report_suite_group_functional.html

Report generated on 15-Jun-2023 at 04:13:42 by pytest-html v3.2.0

Summary

201 tests ran in 42946.12 seconds.

191 passed, 19 skipped, 8 failed, 0 errors, 2 expected failures, 0 unexpected passes

Results

Result Test Duration Links
Failed functional/bridging/test_bridging_unregistered_traffic_ipv6.py::test_bridging_unregistered_traffic_ipv6 172.10
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_bridging_unregistered_traffic_ipv6(testbed):
"""
Test Name: test_bridging_unregistered_traffic_ipv6
Test Suite: suite_functional_bridging
Test Overview: Verify bridge flooding behaviour of unregistered IPv6 packets.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set ports swp1, swp2, swp3, swp4 master br0.
3. Set entities swp1, swp2, swp3, swp4 UP state.
4. Set bridge br0 admin state UP.
5. Send increment traffic from TG.
6. Verify that traffic flooded to all ports that are members in br0.
7. Disable multicast flooding on the ports.
8. Send increment traffic from TG.
9. Verify that traffic was not flooded/forwarded to any of the disabled ports.
10. Enable back multicast flooding on the ports.
11. Send increment traffic from TG.
12. Verify that traffic flooded to all ports that are members in br0.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device_host_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
# packages do not have enough time to all be sent
traffic_duration = 10
mac_count = 65000
pps_value = 30000

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'type': 'bridge'}]}])
assert out[0][device_host_name]['rc'] == 0, f'Verify that bridge created.\n{out}'

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '2001:1::2', '2001:1::1', 64),
(ports[1], tg_ports[1], '2001:2::2', '2001:2::1', 64),
(ports[2], tg_ports[2], '2001:3::2', '2001:3::1', 64),
(ports[3], tg_ports[3], '2001:4::2', '2001:4::1', 64),
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen, 'version': 'ipv6'}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

streams = {
'streamA': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': {'type': 'increment',
'start': '00:00:00:00:00:35',
'step': '00:00:00:00:10:00',
'count': mac_count},
'dstMac': 'aa:bb:cc:dd:ee:11',
'srcIp': '2001:1::2',
'dstIp': '2001:2::2',
'frameSize': 78,
'type': 'raw',
'protocol': 'ipv6',
'rate': pps_value,
},
'streamB': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcMac': {'type': 'increment',
'start': '00:00:00:00:00:35',
'step': '00:00:00:00:10:00',
'count': mac_count},
'dstMac': 'aa:bb:cc:dd:ee:12',
'srcIp': '2001:1::2',
'dstIp': '2001:3::2',
'frameSize': 78,
'type': 'raw',
'protocol': 'ipv6',
'rate': pps_value,
},
'streamC': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcMac': {'type': 'increment',
'start': '00:00:00:00:00:35',
'step': '00:00:00:00:10:00',
'count': mac_count},
'dstMac': 'aa:bb:cc:dd:ee:13',
'srcIp': '2001:1::2',
'dstIp': '2001:4::2',
'frameSize': 78,
'type': 'raw',
'protocol': 'ipv6',
'rate': pps_value,
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
for row in stats.Rows:
assert tgen_utils_get_loss(row) == 0.000, \
f"Verify that traffic from {row['Tx Port']} to {row['Rx Port']} forwarded.\n{out}"

out = await BridgeLink.set(
input_data=[{device_host_name: [
{'device': port, 'flood': False} for port in ports]}])
err_msg = f"Verify that entities set to flooding 'OFF' state.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
for row in stats.Rows:
> assert tgen_utils_get_loss(row) == 100.000, \
f"Verify that traffic from {row['Tx Port']} to {row['Rx Port']} not forwarded.\n{out}"

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unregistered_traffic_ipv6.py:162:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <ixnetwork_restpy.assistants.statistics.row.Row object at 0x7f7a26176950>, index = 'Tx Port'

def __getitem__(self, index):
"""Set the row index or return a cell value

Cell retrieval on a row is accomplished by using an index
# specifying an ordinal sets the row index
# specifying a regex that is not a valid column label also sets the row index based on the first match
# the regex can be used to match the contents of many cells in the row and it will return the first row that matches
# if the index is a valid column header label then the cell value for the current row and column header label will be returned
"""
if isinstance(index, basestring):
if index in self._column_headers:
return self._row_data[self._index][self._column_headers.index(index)]
import re

regex = re.compile(index)
for row_index in range(len(self._row_data)):
for cell in self._row_data[row_index]:
if regex.search(cell) is not None:
self._index = row_index
return self
> raise IndexError
E IndexError

/usr/local/lib/python3.10/dist-packages/ixnetwork_restpy/assistants/statistics/row.py:61: IndexError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic_ipv6">Starting testcase:test_bridging_unregistered_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unregistered_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-3018' coro=<test_bridging_unregistered_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unregistered_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.2, port 53098 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:57:29 PM UTC INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26177970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamA Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamB Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamC Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26174340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamA Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamB Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamC Tx 131237 Rx 131237 Frames Delta 0 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unregistered_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:00:19 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:00:21 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":249,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG agg2:Logger.py:156
Failed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query 202.10
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_igmp_snooping_modified_query(testbed):
"""
Test Name: test_igmp_querier
Test Suite: suite_functional_igmp
Test Overview: Test IGMP snooping with modified querier interval
Test Procedure:
1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval
Enslave all TG ports to bridge interface and config fastleave on 1st rx_port
2. Init interfaces and create 2 multicast Streams
3. Create 3 membership report streams, 1 with invalid checksum
4. Send Traffic from router port and from clients
5. Verify Mdb entries were created for clients and router
6. Verify the multicast traffic is flooded to all bridge ports except last client
7. Create and send leave stream from 1st client
8. Verify MDB entry is deleted
9. Verify no traffic is received on the port that left the group
"""

bridge = 'br0'
querrier_interval = 10
sleep_value = 5
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
mcast_group1 = '227.1.1.1'
mcast_group2 = '239.2.2.2'
mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2]
macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04']

# 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval
# Config Fastleave on 1st rx_port
await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval)

out = await BridgeLink.set(
input_data=[{dev_name: [
{'device': dut_ports[1], 'fastleave': 'on'}]}])
err_msg = f'Verify that port entities set to fastleave ON.\n{out}'
assert out[0][dev_name]['rc'] == 0, err_msg

# 2.Init interfaces and create 2 multicast Streams
# 3.Create 3 membership report streams, 1 with invalid checksum
dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24},
{'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24},
{'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}])

tx_port = dev_groups[tg_ports[0]][0]['name']
rx_ports = [dev_groups[tg_ports[1]][0]['name'],
dev_groups[tg_ports[2]][0]['name'],
dev_groups[tg_ports[3]][0]['name']]

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)
streams = {f'mcast_{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': tx_port,
'ip_destination': rx_ports[1],
'srcMac': macs[0],
'dstMac': mcast_ip_to_mac(mcast_group),
'srcIp': '0.0.0.0',
'dstIp': mcast_group,
'frame_rate_type': 'line_rate',
'rate': 40,
} for idx, mcast_group in enumerate([mcast_group1, mcast_group2])}

streams.update({f'member_report{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'],
'ip_destination': dev_groups[tg_ports[0]][0]['name'],
'srcMac': combined[1],
'dstMac': mcast_ip_to_mac(combined[0]),
'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'],
'dstIp': combined[0],
'ipproto': 'igmpv2',
'totalLength': '28',
'igmpType': '22',
'igmpGroupAddr': combined[0],
'rate': 1,
'transmissionControlType': 'fixedPktCount',
'frameCount': 1,
} for idx, combined in enumerate(zip(mcast_group_addr, macs[1:]))
})
streams['member_report3']['igmpChecksum'] = '0'
await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)

# 4.Send Traffic from router port and from clients
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(querrier_interval + 5)

# 5.Verify Mdb entries were created for clients and router
mdb_entires, router_entires = await get_bridge_mdb(dev_name)
verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1])
> assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}'
E AssertionError: No MDB router entries were added to bridge MDB table {}
E assert 0
E + where 0 = len({})

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:589: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-5732' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.2, port 52938 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 09:31:47 PM UTC INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"mdb":[{"index":259,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.84"},{"index":259,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.84"},{"index":259,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 224.91"},{"index":259,"dev":"br0","port":"br0","grp":"ff02::1:ff74:8a3b","state":"temp","flags":[],"vid":1,"timer":" 220.04"}],"router":{}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 09:35:09 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":259,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG agg2:Logger.py:156
Failed functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing 181.72
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_ipv4_random_routing(testbed):
"""
Test Name: test_ipv4_random_routing
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 random routing
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure random IP addrs on all interfaces
4. Generate traffic and verify reception
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
dent = dent_dev.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
traffic_duration = 10

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'}
for port in ports]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure random IP addrs on all interfaces
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], *get_random_ip()),
(ports[1], tg_ports[1], *get_random_ip()),
(ports[2], tg_ports[2], *get_random_ip()),
(ports[3], tg_ports[3], *get_random_ip()),
)

out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Generate traffic and verify reception
streams = {'ipv4': {
'type': 'ipv4',
'protocol': 'ip',
'rate': '1000', # pps
}}

await tgen_utils_setup_streams(tgen_dev, None, streams)

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
loss = tgen_utils_get_loss(row)
> assert loss == 0, f'Expected loss: 0%, actual: {loss}%'
E AssertionError: Expected loss: 0%, actual: 100.0%
E assert 100.0 == 0

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py:100: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6913' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.2, port 60754 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:28:34 PM UTC INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG agg2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG agg2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:28:35 PM UTC INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip address add 31.40.117.149/8 dev swp1 && ip address add 123.18.24.3/5 dev swp2 && ip address add 65.98.216.11/3 dev swp3 && ip address add 84.154.231.216/2 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: ip address add 31.40.117.149/8 dev swp1 && ip address add 123.18.24.3/5 dev swp2 && ip address add 65.98.216.11/3 dev swp3 && ip address add 84.154.231.216/2 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_31.40.117.148/8', 'count': 1, 'ip': '31.40.117.148', 'gw': '31.40.117.149', 'plen': 8, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_123.18.24.2/5', 'count': 1, 'ip': '123.18.24.2', 'gw': '123.18.24.3', 'plen': 5, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_65.98.216.10/3', 'count': 1, 'ip': '65.98.216.10', 'gw': '65.98.216.11', 'plen': 3, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_84.154.231.217/2', 'count': 1, 'ip': '84.154.231.217', 'gw': '84.154.231.216', 'plen': 2, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:9_31.40.117.148/8 to 10.36.118.199:1:10_123.18.24.2/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:9_31.40.117.148/8 to 10.36.118.199:1:11_65.98.216.10/3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:9_31.40.117.148/8 to 10.36.118.199:1:12_84.154.231.217/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:10_123.18.24.2/5 to 10.36.118.199:1:9_31.40.117.148/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:10_123.18.24.2/5 to 10.36.118.199:1:11_65.98.216.10/3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:10_123.18.24.2/5 to 10.36.118.199:1:12_84.154.231.217/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:11_65.98.216.10/3 to 10.36.118.199:1:9_31.40.117.148/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:11_65.98.216.10/3 to 10.36.118.199:1:10_123.18.24.2/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:11_65.98.216.10/3 to 10.36.118.199:1:12_84.154.231.217/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:12_84.154.231.217/2 to 10.36.118.199:1:9_31.40.117.148/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:12_84.154.231.217/2 to 10.36.118.199:1:10_123.18.24.2/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:12_84.154.231.217/2 to 10.36.118.199:1:11_65.98.216.10/3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_31.40.117.148/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_123.18.24.2/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_65.98.216.10/3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_84.154.231.217/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a02680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI ipv4 SIP-DIP 31.40.117.148-65.98.216.10 Tx 4420 Rx 4420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI ipv4 SIP-DIP 31.40.117.148-84.154.231.217 Tx 4420 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ipv4 SIP-DIP 31.40.117.148-123.18.24.2 Tx 4421 Rx 4421 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI ipv4 #1 SIP-DIP 123.18.24.2-31.40.117.148 Tx 4421 Rx 4421 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI ipv4 #1 SIP-DIP 123.18.24.2-65.98.216.10 Tx 4420 Rx 4420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:12 TI ipv4 #1 SIP-DIP 123.18.24.2-84.154.231.217 Tx 4420 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:9 TI ipv4 #2 SIP-DIP 65.98.216.10-31.40.117.148 Tx 4421 Rx 4421 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI ipv4 #2 SIP-DIP 65.98.216.10-123.18.24.2 Tx 4420 Rx 4420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI ipv4 #3 SIP-DIP 84.154.231.217-31.40.117.148 Tx 4421 Rx 4421 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:31:34 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:31:34 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG agg2:Logger.py:156
Failed functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py::test_port_isolation_interaction_route_between_vlan_devices 158.84
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_port_isolation_interaction_route_between_vlan_devices(testbed):
"""
Test Name: test_port_isolation_interaction_route_between_vlan_devices
Test Suite: suite_functional_port_isolation
Test Overview: Verify Routing between VLAN devices when VLANs' enslaved ports defined as isolated.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set bridge br0 admin state UP.
3. Set ports swp1, swp2 master br0.
4. Create VLAN-devices br0.10 and br0.11.
5. Set all entities admin state UP.
6. Add bridges to VLAN of the VLAN-devices.
7. Set the first two bridge entities as isolated.
8. Add ports to VLANs, and then configure IP addresses on VLAN devices.
9. Verify the offload flag appears in VLAN-device default routes.
10. Prepare streams from one VLAN device's neighbor to the other.
11. Transmit traffic by TG.
12. Verify traffic is forwarded to both VLAN-device neighbors.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device_host_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
traffic_duration = 15
pps_value = 1000

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge', 'vlan_default_pvid': 0}]}])
err_msg = f"Verify that bridge created, vlan filtering set to 'ON' and vlan_default_pvid set to '0'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports[:2]]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.add(
input_data=[{device_host_name: [
{'link': bridge, 'name': f'br0.1{x}', 'type': f'vlan id 1{x}'} for x in range(2)]}])
err_msg = f"Verify that links created and type set to 'vlan id 10' and 'vlan id 11'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': f'br0.1{x}', 'operstate': 'up'} for x in range(2)]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that links set to 'UP' state.\n{out}"

out = await BridgeVlan.add(
input_data=[{device_host_name: [
{'device': bridge, 'vid': f'1{x}', 'self': True} for x in range(2)]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge added to vid '10' and '11'.\n{out}"

out = await BridgeLink.set(
input_data=[{device_host_name: [
{'device': port, 'isolated': True} for port in ports[:2]]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to isolated state 'ON'.\n{out}"

out = await BridgeVlan.add(
input_data=[{device_host_name: [
{'device': ports[x], 'vid': f'1{x}'} for x in range(2)]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entitie added to vid '10' and '11'.\n{out}"

out = await IpAddress.add(
input_data=[{device_host_name: [
{'dev': 'br0.10', 'prefix': '1.1.1.1/24'},
{'dev': 'br0.11', 'prefix': '2.2.2.2/24'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Failed to add IP address to 'br0.10'.\n{out}"

for x in range(2):
out = await IpRoute.show(input_data=[{device_host_name: [{'dev': f'br0.1{x}', 'cmd_options': '-j'}]}],
parse_output=True)
assert out[0][device_host_name]['rc'] == 0, f'Failed to execute the command IpRoute.show.\n{out}'

ip_route_entries = out[0][device_host_name]['parsed_output']
offload_flag = str([en['flags'] for en in ip_route_entries if 'flags' in en]).strip("]'[")
err_msg = 'Verify the offload flag appears in VLAN-device default routes.'
assert 'rt_trap' in offload_flag, err_msg

address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '2.2.2.3', '2.2.2.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— vlan_10 — | — vlan_11 —
swp1 -> swp2 | swp2 -> swp1
"""

streams = {
'vlan_10': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcIp': '0.0.0.0',
'dstIp': '2.2.2.3',
'srcMac': '00:00:00:00:00:01',
'dstMac': '00:00:00:00:00:02',
'frameSize': 150,
'rate': pps_value,
'protocol': '0x0800',
'type': 'raw',
'vlanID': 10
},
'vlan_11': {
'ip_source': dev_groups[tg_ports[1]][0]['name'],
'ip_destination': dev_groups[tg_ports[0]][0]['name'],
'srcIp': '0.0.0.0',
'dstIp': '1.1.1.2',
'srcMac': '00:00:00:00:00:01',
'dstMac': '00:00:00:00:00:02',
'frameSize': 150,
'rate': pps_value,
'protocol': '0x0800',
'type': 'raw',
'vlanID': 11
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
> assert tgen_utils_get_loss(row) == 0.000, \
f"Verify that traffic from {row['Tx Port']} to {row['Rx Port']} forwarded.\n{out}"
E AssertionError: Verify that traffic from 10.36.118.199:1:9 to 10.36.118.199:1:10 forwarded.
E [{'agg2': {'command': 'ip -j route show dev br0.11 ', 'rc': 0, 'result': '[{"dst":"2.2.2.0/24","protocol":"kernel","scope":"link","prefsrc":"2.2.2.2","flags":["linkdown","rt_trap"]}]\n', 'parsed_output': [{'dst': '2.2.2.0/24', 'protocol': 'kernel', 'scope': 'link', 'prefsrc': '2.2.2.2', 'flags': ['linkdown', 'rt_trap']}]}}]
E assert 100.0 == 0.0
E + where 100.0 = tgen_utils_get_loss(<ixnetwork_restpy.assistants.statistics.row.Row object at 0x7f7a255b1000>)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py:174: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_route_between_vlan_devices">Starting testcase:test_port_isolation_interaction_route_between_vlan_devices from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-9811' coro=<test_port_isolation_interaction_route_between_vlan_devices() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.2, port 35828 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 01:06:49 AM UTC INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.11 type vlan id 11 INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.11 type vlan id 11 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0.10 up && ip link set dev br0.11 up INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: ip link set dev br0.10 up && ip link set dev br0.11 up INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 11 self INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 11 self INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 11 INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 11 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.2/24 dev br0.11 INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.2/24 dev br0.11 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip -j route show dev br0.10 INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: ip -j route show dev br0.10 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG agg2:Logger.py:156 [{"dst":"1.1.1.0/24","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["linkdown","rt_trap"]}] INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip -j route show dev br0.11 INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: ip -j route show dev br0.11 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"dst":"2.2.2.0/24","protocol":"kernel","scope":"link","prefsrc":"2.2.2.2","flags":["linkdown","rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a255b1900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI vlan_10 SIP-DIP N/A Tx 7986 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI vlan_11 SIP-DIP N/A Tx 7986 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_route_between_vlan_devices from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 01:09:25 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":298,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":299,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":300,"link":"br0","ifname":"br0.11","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 01:09:27 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 01:09:27 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=35] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=36] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":298,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=37] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=38] Channel closed DEBUG agg2:Logger.py:156
Failed functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates 254.05
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_storm_control_different_rates(testbed):
"""
Test Name: test_storm_control_different_rates
Test Suite: suite_functional_storm_control
Test Overview: Verify rate is limited according to the changes in Storm Control Rules.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Set entities swp1, swp2, swp3, swp4 UP state.
2. Init vlan aware bridge entity br0.
3. Set bridge br0 admin state UP.
4. Set ports swp1, swp2, swp3, swp4 master br0.
5. Add swp1 and swp2 to the same vlan. Add swp3 and swp4 to another vlan.
6. Set up the following streams:
Ixia port 1: broadcast, multicast and unknown unicast streams, with random generated size of packet;
Ixia port 2: broadcast stream, with random generated size of packet;
Ixia port 3: multicast stream, with random generated size of packet;
Ixia port 4: unknown unicast stream, with random generated size of packet.
7. Set a storm control rate limit for all types of traffic on all ports.
8. Transmit continues traffic by TG.
9. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
10. Change storm control rates for all ports.
11. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
12. Change storm control rates for all ports again.
13. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
14. Disable storm control for all ports.
15. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
traffic_duration = 15
correlation = 0.33
deviation = 0.10
kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (2800, 3000), (3800, 4000),
(4500, 4700), (1000, 1200), (5100, 5300)]]

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'operstate': 'up'} for port in ports]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to 'UP' state.\n{out}"

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'vlan_default_pvid': 0, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created, vlan filtering set to 'ON' and vlan_default_pvid set to '0'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge} for port in ports]}])
err_msg = f'Verify that bridge entities enslaved to bridge.\n{out}'
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await BridgeVlan.add(
input_data=[{device_host_name: [
{'device': ports[x], 'vid': f'{1 if x<2 else 2}', 'untagged': True, 'pvid': True}
for x in range(4)]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entities added to vid '1' and '2'.\n{out}"

# set a storm control rate limits
await set_rates(kbyte_value_stream, ports, device_host_name)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp4 | swp1 -> swp4 | swp1 -> swp4 | swp2 -> swp4 | swp3 -> swp4 | swp4 -> swp3

— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp3 | swp1 -> swp3 | swp1 -> swp3 | swp2 -> swp3 | swp3 -> swp2 | swp4 -> swp2

— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp2 | swp1 -> swp2 | swp1 -> swp2 | swp2 -> swp1 | swp3 -> swp1 | swp4 -> swp1
"""

streams = {
f'stream_1_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcMac': f'16:ea:c3:{x+5}d:1e:ec',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
}
streams.update({
f'stream_2_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcIp': f'3.6.92.20{x+1}',
'dstIp': f'228.68.176.2{x+11}',
'srcMac': f'36:11:3d:38:9a:{x+5}e',
'dstMac': f'01:00:5E:4{x+4}:b0:d3',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_3_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcMac': f'72:88:c5:ec:f5:0{x+5}',
'dstMac': f'92:ff:e{x+6}:07:88:a2',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_4_swp2->swp{4-x if x < 2 else 1}': {
'ip_source': dev_groups[tg_ports[1]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x if x < 2 else 0]][0]['name'],
'srcMac': f'84:fc:70:36:2a:7{x+3}',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_5_swp3->swp{4-x if x <= 0 else 3-x}': {
'ip_source': dev_groups[tg_ports[2]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x if x <= 0 else 2-x]][0]['name'],
'srcMac': f'e4:c7:7f:{x+6}e:60:2b',
'dstMac': f'01:00:5E:19:bd:a{x+5}',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x9100',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_6_swp4->swp{3-x}': {
'ip_source': dev_groups[tg_ports[3]][0]['name'],
'ip_destination': dev_groups[tg_ports[2-x]][0]['name'],
'srcMac': f'70:c5:30:7c:ef:f{x+5}',
'dstMac': f'00:8{x+5}:4f:1b:80:91',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x88a8',
'type': 'raw'
} for x in range(3)
})

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# verify the rate is limited
> await verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:248:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

kbyte_value_stream = [1678, 2830, 3938, 4646, 1062, 5170], tgen_dev = [Ixia Traffic Generator: 10.36.118.213], correlation = 0.33, deviation = 0.1

async def verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation):
# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
rate_value = {
'stream_1_swp1->swp2': kbyte_value_stream[0],
'stream_2_swp1->swp2': kbyte_value_stream[1],
'stream_3_swp1->swp2': kbyte_value_stream[2],
'stream_4_swp2->swp1': kbyte_value_stream[3],
'stream_5_swp3->swp4': kbyte_value_stream[4],
'stream_6_swp4->swp3': kbyte_value_stream[5]
}
for stream, value in rate_value.items():
> assert math.isclose(value*correlation*1000, float(collected[stream]['rx_rate']), rel_tol=deviation), \
f'Failed: the rate is not limited by storm control for {rate_value}.'
E AssertionError: Failed: the rate is not limited by storm control for {'stream_1_swp1->swp2': 1678, 'stream_2_swp1->swp2': 2830, 'stream_3_swp1->swp2': 3938, 'stream_4_swp2->swp1': 4646, 'stream_5_swp3->swp4': 1062, 'stream_6_swp4->swp3': 5170}.
E assert False
E + where False = <built-in function isclose>(((1678 * 0.33) * 1000), 4452286.901, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 4452286.901 = float('4452286.901')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:57: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11390' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.2, port 52208 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:17:25 AM UTC INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1678 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1678 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1678}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2830 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2830 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2830}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3938 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3938 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3938}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4646 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4646 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4646}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1062 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1062 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1062}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5170 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5170 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5170}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2559dae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 422317 Rx 0 Frames Delta 422317 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 342964 Rx 0 Frames Delta 342964 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 352661 Rx 3261 Frames Delta 349400 Loss 99.075 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 339540 Rx 0 Frames Delta 339540 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 1521027 Rx 0 Frames Delta 1521027 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 536834 Rx 8552 Frames Delta 528282 Loss 98.407 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 419477 Rx 0 Frames Delta 419477 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 1508761 Rx 0 Frames Delta 1508761 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 521132 Rx 11491 Frames Delta 509641 Loss 97.795 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 434076 Rx 0 Frames Delta 434076 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 398905 Rx 0 Frames Delta 398905 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 905988 Rx 22993 Frames Delta 882995 Loss 97.462 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 308724 Rx 1873 Frames Delta 306851 Loss 99.393 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 603505 Rx 0 Frames Delta 603505 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 413908 Rx 0 Frames Delta 413908 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 1078308 Rx 30287 Frames Delta 1048021 Loss 97.191 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 333488 Rx 0 Frames Delta 333488 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 290959 Rx 0 Frames Delta 290959 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3938}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2830}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4646}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1062}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5170}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG agg2:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:21:34 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:21:39 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":322,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=49] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=188, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=50] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=50] Channel closed DEBUG agg2:Logger.py:156
Failed functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule 208.25
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_storm_control_interaction_span_rule(testbed):
"""
Test Name: test_storm_control_interaction_span_rule
Test Suite: suite_functional_storm_control
Test Overview: Verify rate is not limited by Storm Control due to the mirred rule.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set bridge br0 admin state UP.
3. Set ports swp1, swp2, swp3, swp4 master br0.
4. Set entities swp1, swp2, swp3, swp4 UP state.
5. Set storm control rate limit rule for all streams.
6. Define a SPAN rule with a source port.
7. Set up the following streams:
- broadcast with random generated size of packet;
- multicast with random generated size of packet;
- unknown unicast with random generated size of packet.
8. Transmit continues traffic by TG.
9. Verify the RX rate on the RX port is as expected - the rate is limited according to storm control limits.
Echamine the impact of the SPAN rule.
10. Disable storm control rate limit rule for all streams.
12. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
size_packets = randrange(500, 1000)
traffic_duration = 15
deviation = 0.10
kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (3800, 4000), (5100, 5300)]]

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

# set a storm control rate limits
await set_rates(kbyte_value_stream, ports, device_host_name)

try:
out = await TcQdisc.add(
input_data=[{device_host_name: [
{'dev': ports[0], 'kind': 'ingress'}]}])
assert out[0][device_host_name]['rc'] == 0, f'Failed to configure ingress qdisc.\n{out}'

rc, out = await dent_dev.run_cmd(f'tc filter add dev {ports[0]} ingress matchall skip_sw action mirred \
egress mirror dev {ports[1]}')
assert rc == 0, 'Failed to configure ingress matchall.'

address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 — |
swp1 -> swp2 | swp1 -> swp3 | swp1 -> swp4 |
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '10:62:5a:cf:ab:39',
'dstMac': '34:1e:60:35:58:ac',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcMac': '98:92:be:4c:c8:53',
'dstMac': '01:00:5E:51:14:af',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcMac': '54:84:c3:74:89:37',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
assert math.isclose(float(collected['stream_1']['tx_rate']),
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
'Failed: the rate is limited by storm control due to mirred rule.'
for x in range(2):
> assert math.isclose(kbyte_value_stream[x+1]*1000,
float(collected[f'stream_{x+2}']['rx_rate']), rel_tol=deviation), \
'Failed: the rate is not limited by storm control.'
E AssertionError: Failed: the rate is not limited by storm control.
E assert False
E + where False = <built-in function isclose>((3996 * 1000), 26981372.287, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 26981372.287 = float('26981372.287')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:176: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11572' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.2, port 49802 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:25:54 AM UTC INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1667 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1667 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1667}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3996 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3996 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3996}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5286 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5286 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5286}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2574ee90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2864556 Rx 2855966 Frames Delta 8590 Loss 0.300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2864556 Rx 28429 Frames Delta 2836127 Loss 99.008 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2864556 Rx 37607 Frames Delta 2826949 Loss 98.687 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5286}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1667}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3996}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG agg2:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:29:17 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:29:18 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:29:22 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":324,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG agg2:Logger.py:156
Failed functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic 193.51
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_storm_control_rule_set_for_br_and_mc_traffic(testbed):
"""
Test Name: test_storm_control_rule_set_for_br_and_mc_traffic
Test Suite: suite_functional_storm_control
Test Overview: Verify Storm Control limits the rate of specific traffic types.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set ports swp1, swp2 master br0.
3. Set entities swp1, swp2 UP state.
4. Set bridge br0 admin state UP.
5. Set up the following streams:
- broadcast stream with random generated size of packet, on TX port;
- multicast stream with random generated size of packet, on TX port;
- unknown unicast stream with random generated size of packet, on TX port.
6. Set storm control rate limit of broadcast traffic on TX port.
7. Transmit continues traffic by TG.
8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited.
9. Disable storm control rate limit for broadcast traffic.
10. Set storm control rate limit of multicast traffic on TX port.
11. Verify multicast traffic is limited on RX port. Verify broadcast and unknown unicast are not limited.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
kbyte_value_bc = 15689
kbyte_value_mc = 27713
traffic_duration = 15
deviation = 0.10

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}',
name='bc_kbyte_per_sec_rate', value=kbyte_value_bc,
cmode='runtime', device_host_name=device_host_name, set=True, verify=True)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 —
swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcIp': '147.126.111.32',
'dstIp': '255.255.255.255',
'srcMac': 'b2:ac:8f:b3:fb:2c',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcIp': '109.51.220.173',
'dstIp': '224.33.57.130',
'srcMac': '76:07:44:b7:38:07',
'dstMac': '01:00:5E:21:39:82',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '98:ba:45:33:c7:ee',
'dstMac': 'd2:15:8d:45:e1:1e',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
> assert math.isclose(kbyte_value_bc*1000,
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
f"The rate is not limited by storm control, \
actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}."
E AssertionError: The rate is not limited by storm control, actual rate 15689000 instead of 0.0.
E assert False
E + where False = <built-in function isclose>((15689 * 1000), 0.0, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 0.0 = float('0.000')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:154: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11853' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.2, port 40480 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:42:37 AM UTC INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2550d090>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 16751001 Rx 824843 Frames Delta 15926158 Loss 95.076 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 16033100 Rx 16033092 Frames Delta 8 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2181372 Rx 2181370 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG agg2:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:45:44 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:45:50 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":328,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG agg2:Logger.py:156
Failed functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic 198.43
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

async def test_storm_control_rule_set_for_br_and_unk_uc_traffic(testbed):
"""
Test Name: test_storm_control_rule_set_for_br_and_unk_uc_traffic
Test Suite: suite_functional_storm_control
Test Overview: Verify Storm Control limits the rate of specific traffic types.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set ports swp1, swp2 master br0.
3. Set entities swp1, swp2 UP state.
4. Set bridge br0 admin state UP.
5. Set up the following streams:
- broadcast stream with random generated size of packet, on TX port;
- multicast stream with random generated size of packet, on TX port;
- unknown unicast stream with random generated size of packet, on TX port.
6. Set storm control rate limit of broadcast traffic on TX port.
7. Transmit continues traffic by TG.
8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited.
9. Disable storm control rate limit for broadcast traffic.
10. Set storm control rate limit of unknown unicast traffic on TX port.
11. Verify unknown unicast traffic is limited on RX port. Verify broadcast and multicast are not limited.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
kbyte_value_unk_uc = 7229
kbyte_value_bc = 21689
traffic_duration = 15
deviation = 0.10

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}',
name='bc_kbyte_per_sec_rate', value=kbyte_value_bc,
cmode='runtime', device_host_name=device_host_name, set=True, verify=True)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 —
swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcIp': '147.126.111.32',
'dstIp': '255.255.255.255',
'srcMac': 'b2:ac:8f:b3:fb:2c',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcIp': '109.51.220.173',
'dstIp': '224.33.57.130',
'srcMac': '76:07:44:b7:38:07',
'dstMac': '01:00:5E:21:39:82',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '98:ba:45:33:c7:ee',
'dstMac': 'd2:15:8d:45:e1:1e',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
> assert math.isclose(kbyte_value_bc*1000,
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
f"The rate is not limited by storm control, \
actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}."
E AssertionError: The rate is not limited by storm control, actual rate 21689000 instead of 144953081.177.
E assert False
E + where False = <built-in function isclose>((21689 * 1000), 144953081.177, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 144953081.177 = float('144953081.177')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:154: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11889' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.2, port 53816 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:45:51 AM UTC INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259dab00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2270204 Rx 134189 Frames Delta 2136015 Loss 94.089 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 7082751 Rx 7082747 Frames Delta 4 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 4545003 Rx 4545001 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG agg2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG agg2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG agg2:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG agg2:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:49:04 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG agg2:Logger.py:156 Thu 15 Jun 2023 02:49:09 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":329,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG agg2:Logger.py:156
XFailed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size 133.98
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_ping_size(testbed):
"""
Test Name: test_ipv4_ping_size
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 ping size
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Add dynamic arp entries
5. Generate ping with size smaller than mru and larger than mru
and verify fragmentation on the larger ping
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
dent = dent_dev.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Add dynamic arp entries
streams = {
'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name']}
}
await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports

# 5. Generate ping with size smaller than mru
await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15)
for port, *_, dst, _ in address_map))

# Generate ping with size larger than mru and verify fragmentation
> await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15)
for port, *_, dst, _ in address_map))

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

dev = [DENT aggregation 2: 10.36.118.41], port = 'swp1', dst = '1.1.1.2', count = 1, interval = 0.1, size = 1473, timeout = 15

async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120):
cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}'
cmd += ' | grep "ping statistics" -A 2' # filter ouptut
rc, out = await dev.run_cmd(cmd)
assert rc == 0, f'Failed to send ping from {port} to {dst}'
> assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}'
E AssertionError: Some pings did not reach their destination
E --- 1.1.1.2 ping statistics ---
E 145 packets transmitted, 0 received, 100% packet loss, time 995ms
E
E
E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 995ms\n\n'

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6673' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.2, port 51390 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:17:37 PM UTC INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG agg2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG agg2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:17:37 PM UTC INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:9_1.1.1.2/24 to 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close DEBUG agg2:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close DEBUG agg2:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session DEBUG agg2:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg2:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG agg2:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.179/0.179/0.179/0.000 ms INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close DEBUG agg2:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.191/0.191/0.191/0.000 ms INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG agg2:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.166/0.166/0.166/0.000 ms DEBUG agg2:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.194/0.194/0.194/0.000 ms INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close DEBUG agg2:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close DEBUG agg2:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=24] Requesting new SSH session DEBUG agg2:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=23] Command: ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg2:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=24] Command: ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=25] Command: ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=26] Command: ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=23] Channel closed DEBUG agg2:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 995ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=120, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=26] Channel closed DEBUG agg2:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 994ms DEBUG agg2:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 1006ms DEBUG agg2:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 1006ms INFO asyncssh:logging.py:92 [conn=120, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=27] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=28] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:19:49 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=32] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:19:50 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=33] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=120, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=120, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=34] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=35] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=36] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=37] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=38] Channel closed DEBUG agg2:Logger.py:156
XFailed functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation 138.25
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f7a277898a0>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_fragmentation(testbed):
"""
Test Name: test_ipv4_fragmentation
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 fragmentation
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Generate Non-fragment/fragment traffic and verify reception
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
traffic_duration = 10
fragmented = 1522
non_fragmented = 1420
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

streams = {
f'{tg1} <-> {tg2} | frame size {size}': {
'type': 'ipv4',
'ip_source': dev_groups[tg1][0]['name'],
'ip_destination': dev_groups[tg2][0]['name'],
'protocol': 'ip',
'rate': '1000', # pps
'frameSize': size,
'bi_directional': True,
} for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented),
(tg_ports[2], tg_ports[3], fragmented))
}

# 4. Generate Non-fragment/fragment traffic and verify reception
await tgen_utils_setup_streams(tgen_dev, None, streams)

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# Verify packet discarded/fwd
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
loss = tgen_utils_get_loss(row)

if str(non_fragmented) in row['Traffic Item']:
assert loss == 0, f'Expected loss: 0%, actual: {loss}%'
assert row['Tx Frames'] == row['Rx Frames'], \
f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}"
else: # fragmented traffic
> assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \
f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}"
E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 8996
E assert 0 == (4498 * 2)
E + where 0 = int('0')
E + and 4498 = int('4498')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6879' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.2, port 51774 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:26:16 PM UTC INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG agg2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG agg2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:26:16 PM UTC INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:9 <-> 10.36.118.199:1:10 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:9_1.1.1.2/24 to 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:11 <-> 10.36.118.199:1:12 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:11_3.3.3.2/24 to 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259026b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI 10.36.118.199:1:9 <-> 10.36.118.199:1:10 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 4498 Rx 4498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI 10.36.118.199:1:9 <-> 10.36.118.199:1:10 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4498 Rx 4498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:12 TI 10.36.118.199:1:11 <-> 10.36.118.199:1:12 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 4498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:11 TI 10.36.118.199:1:11 <-> 10.36.118.199:1:12 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 4498 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG agg2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG agg2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:28:32 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 10:28:33 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG agg2:Logger.py:156
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] 0.45
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.2, port 43502 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] 0.46
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-56' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.2, port 43510 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:17:59 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-96' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.2, port 43524 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-136' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.2, port 43528 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-176' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.2, port 43544 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:00 PM UTC INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] 0.50
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-216' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.2, port 43546 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-256' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.2, port 43548 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:01 PM UTC INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] 0.48
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-296' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.2, port 43550 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-336' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.2, port 43558 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:02 PM UTC INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] 0.45
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-376' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.2, port 43564 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_config.py::test_l1_settings_[autodetect] 0.55
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-416' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.2, port 43580 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:03 PM UTC INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_config.py::test_l1_settings_[autoneg] 0.50
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-460' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.2, port 43592 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-504' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.2, port 43602 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:04 PM UTC INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-544' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.2, port 34034 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] 0.46
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-584' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.2, port 34046 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:05 PM UTC INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-624' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.2, port 34056 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] 0.45
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-664' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.2, port 34058 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:06 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed 0.72
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py', 66, 'Skipped: Need 1 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-758' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.2, port 34712 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:52 PM UTC INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:52 PM UTC INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:53 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG agg2:Logger.py:156 []
Skipped functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle 0.00
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152')
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py
Passed functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] 165.58
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-704' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.2, port 34064 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:07 PM UTC INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session DEBUG agg2:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: ethtool swp1 DEBUG agg2:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed DEBUG agg2:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg2:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:18:07 PM UTC INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=23] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=24] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=24] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=25] Channel closed DEBUG agg2:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=26] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=26] Channel closed DEBUG agg2:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=27] Channel closed DEBUG agg2:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=28] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=28] Channel closed DEBUG agg2:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:9 --> 10.36.118.199:1:10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:10 --> 10.36.118.199:1:9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25af9930>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI 10.36.118.199:1:9 --> 10.36.118.199:1:10 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6447756 Rx 6447756 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI 10.36.118.199:1:10 --> 10.36.118.199:1:9 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6447756 Rx 6447756 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=29] Channel closed DEBUG agg2:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=30] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=30] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=32] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:52 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=33] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=34] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:52 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=35] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=36] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":206,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=37] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=38] Channel closed DEBUG agg2:Logger.py:156
Passed functional/L1/test_l1_port_state.py::test_l1_port_state_status 0.51
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-801' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete It took 0:00:00.035033 to grep count of entities. It took 0:00:00.036518 to set entities to 'UP' state.
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.2, port 34726 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:53 PM UTC INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG agg2:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG agg2:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 42:45:6c:aa:4b:b5 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 5126 bytes 817721 (798.5 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5126 bytes 817721 (798.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.41 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::36ef:b6ff:feec:2a4e prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:2a:4e txqueuelen 2048 (Ethernet) RX packets 135362 bytes 11794048 (11.2 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 84203 bytes 9796636 (9.3 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 1.1.1.1 netmask 255.255.255.0 broadcast 0.0.0.0 inet6 fe80::36ef:b6ff:feec:2a51 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:2a:51 txqueuelen 1000 (Ethernet) RX packets 3453319816 bytes 1364081451912 (1.2 TiB) RX errors 0 dropped 459659 overruns 0 frame 5174 TX packets 6598081 bytes 3377898582 (3.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:2a52 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:2a:52 txqueuelen 1000 (Ethernet) RX packets 865846384 bytes 308419498825 (287.2 GiB) RX errors 0 dropped 6170 overruns 0 frame 4924 TX packets 28373651 bytes 17974944577 (16.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:2a53 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:2a:53 txqueuelen 1000 (Ethernet) RX packets 383691125 bytes 179808281989 (167.4 GiB) RX errors 0 dropped 2070 overruns 0 frame 0 TX packets 30621 bytes 15378184 (14.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:2a54 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:2a:54 txqueuelen 1000 (Ethernet) RX packets 353866418 bytes 137219880936 (127.7 GiB) RX errors 0 dropped 2060 overruns 0 frame 0 TX packets 7085 bytes 3323774 (3.1 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:57 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:58 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:59 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:6f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:70 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:71 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:72 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:73 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:74 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:75 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:76 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:77 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:78 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:79 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:7f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:2a:80 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] 180.59
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-818' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.2, port 34736 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:20:53 PM UTC INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a260974f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 448 Rx 448 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":229376,"packets":448,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":229376,"hw_packets":448,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 448, Rx Frames: 448, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 448, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 448, packets = 448, expected = 448, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 448, hw_packets = 448, expected = 448, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259647c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 745 Rx 745 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"last_used":6,"first_used":13,"stats":{"bytes":371010,"packets":745,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 745, Rx Frames: 745, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 745, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 745, packets = 745, expected = 745, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25964c40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 804 Rx 804 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":14,"stats":{"bytes":812040,"packets":1608,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":400392,"sw_packets":804,"hw_bytes":411648,"hw_packets":804,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 804, Rx Frames: 804, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 804, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 804, packets = 1608, expected = 1608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 804, hw_packets = 804, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 804, sw_packets = 804, expected = 804, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:23:53 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":207,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:23:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:23:53 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=21, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=66] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=21, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] 176.65
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-897' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.2, port 46968 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:23:54 PM UTC INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2621dc00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 453 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":231936,"packets":453,"drops":453,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":231936,"hw_packets":453,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 453, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 453, drops = 453, expected = 453, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 453, packets = 453, expected = 453, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 453, hw_packets = 453, expected = 453, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25965f90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 804 Rx 804 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":399894,"packets":803,"drops":803,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 804, Rx Frames: 804, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 804, drops = 803, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 804, packets = 803, expected = 804, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259670d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 806 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":412672,"packets":806,"drops":806,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":412672,"hw_packets":806,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 806, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 806, drops = 806, expected = 806, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 806, packets = 806, expected = 806, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 806, hw_packets = 806, expected = 806, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 806, sw_packets = 0, expected = 0, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:26:50 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":208,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:26:50 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:26:50 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=22, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=66] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=22, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] 183.09
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-976' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.2, port 42602 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:26:51 PM UTC INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25af9ed0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":229888,"packets":449,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":229888,"hw_packets":449,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 449, Rx Frames: 449, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 449, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 449, packets = 449, expected = 449, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 449, hw_packets = 449, expected = 449, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2621d120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 804 Rx 804 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":400392,"packets":804,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 804, Rx Frames: 804, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, packets = 804, expected = 804, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25967160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI stream SIP-DIP N/A Tx 804 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":14,"stats":{"bytes":812040,"packets":1608,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":400392,"sw_packets":804,"hw_bytes":411648,"hw_packets":804,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 804, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, packets = 1608, expected = 1608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, hw_packets = 804, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 804, sw_packets = 804, expected = 804, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:29:53 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":209,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:29:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:29:53 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=23, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=66] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=23, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_rule_deletion 17.62
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1055' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.2, port 54924 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:29:54 PM UTC INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 10000 flower src_mac 02:9d:da:c0:5f:ec dst_mac 02:aa:1b:7c:e7:98 src_ip 118.153.250.62 dst_ip 112.215.188.56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10001 flower src_mac 02:ac:ab:d3:f6:60 dst_mac 02:40:0c:e7:79:dd vlan_id 2304 vlan_ethtype 0x0800 src_ip 94.180.253.239 dst_ip 115.79.122.45 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10002 flower src_mac 02:77:12:87:02:ff dst_mac 02:6d:ec:e5:d5:fb vlan_id 2960 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10003 flower src_mac 02:cb:dd:0f:48:92 dst_mac 02:49:45:84:54:05 vlan_id 2297 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10004 flower src_mac 02:b2:92:5b:23:31 dst_mac 02:65:98:89:cd:53 vlan_id 957 vlan_ethtype ip src_ip 123.174.178.195 dst_ip 84.181.226.137 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10005 flower src_mac 02:f4:4a:6c:f3:20 dst_mac 02:c1:a7:22:5f:e2 vlan_id 2676 vlan_ethtype 0x0800 src_ip 27.39.192.7 dst_ip 120.114.97.10 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10006 flower src_mac 02:ce:ee:27:69:7c dst_mac 02:72:c9:56:9c:3b vlan_id 3678 vlan_ethtype 0x0800 src_ip 15.169.236.214 dst_ip 67.137.26.80 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10007 flower src_mac 02:32:8a:eb:15:06 dst_mac 02:53:8c:9e:59:3a vlan_id 617 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10008 flower src_mac 02:dc:92:77:05:ef dst_mac 02:7b:19:c0:c9:23 vlan_id 62 vlan_ethtype ip src_ip 91.147.201.211 dst_ip 28.189.172.232 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10009 flower src_mac 02:49:37:ec:d8:ed dst_mac 02:ce:ec:e3:de:87 src_ip 60.85.74.215 dst_ip 39.115.166.16 ip_proto udp src_port 8010 dst_port 47611 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10010 flower src_mac 02:17:4b:a3:04:86 dst_mac 02:d5:3c:76:14:70 vlan_id 1743 vlan_ethtype 0x0800 src_ip 64.244.3.162 dst_ip 118.27.15.78 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10011 flower src_mac 02:18:cc:6a:26:37 dst_mac 02:a7:38:21:14:34 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10012 flower src_mac 02:c4:10:70:56:b4 dst_mac 02:15:d8:ce:c7:21 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10013 flower src_mac 02:18:2c:de:7a:ce dst_mac 02:b9:08:53:ac:7c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10014 flower src_mac 02:81:38:55:aa:5e dst_mac 02:01:ec:ef:52:e3 vlan_id 468 vlan_ethtype 0x0800 src_ip 111.77.241.209 dst_ip 56.240.47.126 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10015 flower src_mac 02:3f:9a:0a:ea:e5 dst_mac 02:9c:76:c6:3b:90 vlan_id 3616 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10016 flower src_mac 02:44:86:fb:53:d0 dst_mac 02:2f:1f:91:02:e0 src_ip 82.211.223.161 dst_ip 107.181.113.54 ip_proto icmp code 237 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10017 flower src_mac 02:79:a1:be:f1:5d dst_mac 02:36:1d:fb:d7:6d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10018 flower src_mac 02:fe:f4:a9:1a:86 dst_mac 02:a4:73:60:15:18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10019 flower src_mac 02:d4:ed:fa:ab:ad dst_mac 02:81:d5:f4:c0:8d action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10020 flower src_mac 02:b0:80:2f:61:4d dst_mac 02:11:47:86:c1:c1 vlan_id 4041 vlan_ethtype ip src_ip 67.89.119.217 dst_ip 106.140.16.29 ip_proto udp src_port 9932 dst_port 26910 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10021 flower src_mac 02:b3:35:1e:eb:c1 dst_mac 02:d9:d2:6f:ce:fc vlan_id 2070 vlan_ethtype ip src_ip 80.253.128.188 dst_ip 67.21.108.26 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10022 flower src_mac 02:c2:89:8c:52:44 dst_mac 02:eb:43:8c:26:0e src_ip 89.215.43.14 dst_ip 94.107.167.238 ip_proto tcp src_port 52741 dst_port 16290 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10023 flower src_mac 02:8d:fe:5b:a2:33 dst_mac 02:7a:98:b5:e1:ec src_ip 114.250.5.37 dst_ip 74.202.232.238 ip_proto tcp src_port 57329 dst_port 53300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10024 flower src_mac 02:a9:23:48:49:7c dst_mac 02:20:3a:a4:ba:c3 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10025 flower src_mac 02:47:9a:db:f6:5f dst_mac 02:20:ed:4d:c1:c4 src_ip 113.107.67.248 dst_ip 48.246.70.113 ip_proto icmp code 59 type 11 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10026 flower src_mac 02:62:80:d3:bb:72 dst_mac 02:75:4f:01:67:80 vlan_id 1632 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10027 flower src_mac 02:f8:34:eb:a2:fc dst_mac 02:07:a2:a0:a4:91 vlan_id 3739 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10028 flower src_mac 02:41:25:bb:5e:ea dst_mac 02:7a:e9:cd:73:7f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10029 flower src_mac 02:eb:c8:9d:10:7c dst_mac 02:24:77:63:f0:f2 vlan_id 3431 vlan_ethtype ip src_ip 113.240.19.225 dst_ip 49.243.218.112 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10030 flower src_mac 02:93:b5:72:54:d7 dst_mac 02:6d:ce:88:92:7f vlan_id 3073 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10031 flower src_mac 02:dd:4b:2c:45:17 dst_mac 02:13:2f:e1:57:eb action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10032 flower src_mac 02:d3:2e:75:73:5b dst_mac 02:28:46:3a:5a:2f vlan_id 658 vlan_ethtype ip src_ip 23.134.40.214 dst_ip 20.70.191.247 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10033 flower src_mac 02:81:a2:8e:19:c8 dst_mac 02:3d:d3:4d:31:e9 src_ip 47.114.138.193 dst_ip 12.61.190.122 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10034 flower src_mac 02:8b:0d:95:e3:e1 dst_mac 02:ee:78:56:b0:09 vlan_id 1663 vlan_ethtype ip src_ip 66.225.246.180 dst_ip 52.46.136.153 ip_proto tcp src_port 25423 dst_port 29111 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10035 flower src_mac 02:d5:6f:79:e6:3f dst_mac 02:19:e6:63:4c:ca vlan_id 437 vlan_ethtype 0x0800 src_ip 105.214.159.55 dst_ip 25.164.202.41 ip_proto tcp src_port 38530 dst_port 33866 action trap && tc filter add dev swp1 ingress protocol ip pref 10036 flower src_mac 02:bb:ad:4d:a9:55 dst_mac 02:3e:a1:4d:43:3b src_ip 99.177.9.54 dst_ip 120.237.200.228 ip_proto udp src_port 55506 dst_port 8956 action drop && tc filter add dev swp1 ingress protocol ip pref 10037 flower src_mac 02:a4:51:31:a8:24 dst_mac 02:ca:8a:34:09:1b src_ip 60.211.182.240 dst_ip 108.193.68.201 ip_proto udp src_port 56152 dst_port 16492 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10038 flower src_mac 02:2a:e8:ed:5b:3c dst_mac 02:57:86:64:e7:ea action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10039 flower src_mac 02:27:c0:c6:b5:6d dst_mac 02:6a:a7:eb:bb:40 vlan_id 1209 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10040 flower src_mac 02:de:f0:64:37:3b dst_mac 02:55:58:1a:f7:f8 vlan_id 549 vlan_ethtype ip src_ip 75.174.62.3 dst_ip 23.7.238.144 ip_proto tcp src_port 57096 dst_port 17110 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10041 flower src_mac 02:0f:77:d6:a1:b9 dst_mac 02:ab:42:16:86:45 vlan_id 3385 vlan_ethtype ipv4 src_ip 32.7.86.29 dst_ip 81.141.31.225 ip_proto tcp src_port 59223 dst_port 33175 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10042 flower src_mac 02:f6:ff:09:7c:b0 dst_mac 02:a8:83:1f:66:52 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10043 flower src_mac 02:d2:34:6a:6d:ad dst_mac 02:c1:cc:0e:e5:6e src_ip 87.184.147.61 dst_ip 20.156.81.53 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10044 flower src_mac 02:2c:5a:e1:4c:d8 dst_mac 02:fa:aa:48:62:a2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10045 flower src_mac 02:46:87:4a:50:a1 dst_mac 02:99:0e:b8:7d:72 vlan_id 1735 vlan_ethtype ip src_ip 84.166.248.142 dst_ip 53.154.136.229 ip_proto udp src_port 58920 dst_port 44306 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10046 flower src_mac 02:6b:ee:19:e0:e9 dst_mac 02:ef:1e:ff:11:11 vlan_id 1935 vlan_ethtype 0x0800 src_ip 19.186.57.248 dst_ip 24.185.177.183 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10047 flower src_mac 02:be:88:52:78:36 dst_mac 02:0c:cc:08:17:b9 src_ip 85.214.207.219 dst_ip 39.98.20.216 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10048 flower src_mac 02:29:58:a1:d4:6f dst_mac 02:63:01:d2:07:ac src_ip 123.136.62.121 dst_ip 66.57.169.209 ip_proto tcp src_port 62925 dst_port 2523 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10049 flower src_mac 02:44:a1:de:9f:bc dst_mac 02:49:be:5a:b3:64 src_ip 102.87.89.43 dst_ip 99.198.191.59 ip_proto icmp code 55 type 13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10050 flower src_mac 02:af:43:e0:35:7d dst_mac 02:44:5c:c7:f8:78 vlan_id 1458 vlan_ethtype 0x0800 src_ip 75.149.166.236 dst_ip 82.179.239.232 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10051 flower src_mac 02:d2:58:6a:77:bc dst_mac 02:ef:b2:4b:a5:ac vlan_id 2034 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10052 flower src_mac 02:e6:89:31:f8:cb dst_mac 02:23:5f:23:fe:52 vlan_id 3308 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10053 flower src_mac 02:b1:86:2f:09:2f dst_mac 02:6b:c6:cd:5d:e8 vlan_id 2972 vlan_ethtype 0x0800 src_ip 41.84.82.110 dst_ip 75.251.174.94 ip_proto tcp src_port 45531 dst_port 1070 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10054 flower src_mac 02:00:de:35:87:e1 dst_mac 02:41:08:71:38:44 vlan_id 3836 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10055 flower src_mac 02:64:40:dc:94:2a dst_mac 02:f1:26:2d:80:6e action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:57:fc:46:d4:f8 dst_mac 02:3d:9f:c5:aa:c0 vlan_id 4008 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:66:f5:45:b8:28 dst_mac 02:e2:f4:e7:bf:68 vlan_id 1878 vlan_ethtype ipv4 src_ip 32.117.239.39 dst_ip 126.133.87.135 ip_proto tcp src_port 39687 dst_port 63839 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10058 flower src_mac 02:1c:8c:e6:d5:f9 dst_mac 02:0f:bf:e0:77:7b vlan_id 2704 vlan_ethtype ipv4 src_ip 76.47.152.84 dst_ip 56.82.80.52 ip_proto udp src_port 62015 dst_port 34001 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10059 flower src_mac 02:a3:e9:5c:88:d4 dst_mac 02:7b:62:01:07:07 vlan_id 332 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10060 flower src_mac 02:3a:61:f5:0f:47 dst_mac 02:5e:3a:c2:fe:2c vlan_id 708 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10061 flower src_mac 02:5b:cd:89:75:6a dst_mac 02:94:9e:4e:87:4a action drop && tc filter add dev swp1 ingress protocol ip pref 10062 flower src_mac 02:2d:af:c8:d8:51 dst_mac 02:6d:a7:fc:1e:d7 src_ip 102.1.157.90 dst_ip 49.172.182.121 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10063 flower src_mac 02:32:f1:7f:6a:74 dst_mac 02:fb:4d:15:d3:c1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10064 flower src_mac 02:47:bc:94:af:a5 dst_mac 02:91:d3:ed:62:a5 vlan_id 1483 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10065 flower src_mac 02:a4:4f:f0:da:61 dst_mac 02:d0:a6:03:57:bb vlan_id 1708 vlan_ethtype 0x0800 src_ip 116.248.27.239 dst_ip 107.57.117.246 ip_proto udp src_port 14274 dst_port 1454 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10066 flower src_mac 02:ba:ba:64:e4:cf dst_mac 02:9a:71:e7:ea:be action pass && tc filter add dev swp1 ingress protocol ip pref 10067 flower src_mac 02:de:c7:bd:1a:e7 dst_mac 02:76:28:78:1c:11 src_ip 117.179.107.51 dst_ip 114.29.115.24 ip_proto tcp src_port 64237 dst_port 35597 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10068 flower src_mac 02:ee:cf:2d:a4:8c dst_mac 02:1d:6a:f6:1f:47 vlan_id 279 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10069 flower src_mac 02:87:fd:e0:a4:06 dst_mac 02:87:5f:9e:50:bb src_ip 20.52.135.195 dst_ip 49.239.83.117 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10070 flower src_mac 02:ae:4c:98:4d:4d dst_mac 02:f3:46:64:ff:55 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10071 flower src_mac 02:c9:24:45:f6:c6 dst_mac 02:80:d9:b3:55:e7 src_ip 72.130.68.131 dst_ip 112.84.160.45 ip_proto icmp code 178 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:c6:01:0b:e7:c6 dst_mac 02:09:20:ae:09:1a vlan_id 341 vlan_ethtype ip src_ip 108.95.47.242 dst_ip 48.236.108.179 ip_proto tcp src_port 43499 dst_port 23575 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10073 flower src_mac 02:15:28:8e:4d:18 dst_mac 02:18:81:d4:4d:f5 src_ip 74.193.68.204 dst_ip 20.68.240.200 ip_proto tcp src_port 39221 dst_port 25264 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10074 flower src_mac 02:ff:21:f2:60:13 dst_mac 02:bf:f4:40:ea:7b vlan_id 903 vlan_ethtype ip src_ip 31.225.101.138 dst_ip 42.59.93.113 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10075 flower src_mac 02:64:40:7a:2e:fa dst_mac 02:da:19:68:5f:67 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10076 flower src_mac 02:74:c7:80:26:58 dst_mac 02:e2:8d:c3:4c:d1 vlan_id 3245 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10077 flower src_mac 02:2d:cd:3d:64:e3 dst_mac 02:a7:93:6d:c3:ad vlan_id 919 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:5b:15:4f:61:0e dst_mac 02:7f:ec:4e:78:02 vlan_id 1477 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10079 flower src_mac 02:d0:95:cd:4a:ca dst_mac 02:36:dd:30:de:d3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:82:46:8c:de:1c dst_mac 02:15:73:d0:e2:da vlan_id 2401 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10081 flower src_mac 02:62:94:f1:8f:f4 dst_mac 02:b1:53:2c:c3:b3 src_ip 67.133.210.157 dst_ip 40.249.76.194 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10082 flower src_mac 02:34:4b:11:3f:94 dst_mac 02:5c:40:04:36:de src_ip 74.17.222.119 dst_ip 117.248.189.23 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10083 flower src_mac 02:bc:55:10:71:72 dst_mac 02:ed:ae:45:9c:c6 vlan_id 2656 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10084 flower src_mac 02:8c:5c:5e:c7:f9 dst_mac 02:b8:c5:f6:97:4f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10085 flower src_mac 02:46:bd:64:6b:d5 dst_mac 02:29:b1:4e:b9:45 vlan_id 2891 vlan_ethtype ip src_ip 23.170.198.174 dst_ip 45.23.121.126 ip_proto tcp src_port 30205 dst_port 43140 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10086 flower src_mac 02:ef:84:b2:bd:79 dst_mac 02:62:83:13:73:c3 vlan_id 805 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10087 flower src_mac 02:3b:1a:14:c1:af dst_mac 02:a5:fe:62:81:9d src_ip 113.35.136.66 dst_ip 35.99.47.30 ip_proto udp src_port 58492 dst_port 30738 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10088 flower src_mac 02:33:0f:54:7d:c3 dst_mac 02:68:f4:df:46:ec vlan_id 3718 vlan_ethtype ip src_ip 66.253.220.169 dst_ip 84.208.219.236 ip_proto udp src_port 36783 dst_port 1496 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10089 flower src_mac 02:1e:93:3b:eb:ea dst_mac 02:21:df:e3:4f:a9 vlan_id 3999 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10090 flower src_mac 02:76:f1:7e:98:8e dst_mac 02:c6:59:10:9b:17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10091 flower src_mac 02:ca:af:a8:42:f8 dst_mac 02:12:eb:df:8f:c7 vlan_id 1141 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10092 flower src_mac 02:c7:8d:53:05:8f dst_mac 02:1d:1c:84:0b:9b vlan_id 1832 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10093 flower src_mac 02:a7:4d:5b:e7:a2 dst_mac 02:d5:e7:75:20:a5 vlan_id 360 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10094 flower src_mac 02:c1:d3:55:83:9e dst_mac 02:73:23:bd:52:7f action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10095 flower src_mac 02:ab:7e:d0:34:21 dst_mac 02:dc:c2:bf:f1:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10096 flower src_mac 02:58:25:85:4f:23 dst_mac 02:9b:b7:74:46:7c vlan_id 3602 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10097 flower src_mac 02:2d:07:4e:36:9a dst_mac 02:82:0c:e2:fc:a1 vlan_id 1839 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10098 flower src_mac 02:96:00:0a:ef:fe dst_mac 02:a2:9c:6e:10:75 vlan_id 753 vlan_ethtype ipv4 src_ip 42.232.160.197 dst_ip 96.200.68.48 ip_proto tcp src_port 65437 dst_port 29703 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10099 flower src_mac 02:9b:c7:cc:6f:e3 dst_mac 02:b8:dc:8e:a1:22 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10100 flower src_mac 02:e6:02:e0:2b:60 dst_mac 02:2a:3b:c3:ad:b2 vlan_id 3054 vlan_ethtype 0x0800 src_ip 86.144.4.66 dst_ip 31.241.93.130 ip_proto tcp src_port 9161 dst_port 23008 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10101 flower src_mac 02:65:cc:d3:7d:f3 dst_mac 02:51:f3:26:6e:37 vlan_id 3014 vlan_ethtype ip src_ip 21.169.117.165 dst_ip 55.254.140.164 ip_proto udp src_port 50330 dst_port 30475 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10102 flower src_mac 02:ef:6f:a6:54:05 dst_mac 02:8b:50:bb:39:6b vlan_id 567 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10103 flower src_mac 02:9f:bf:de:3a:2c dst_mac 02:fe:b0:1d:a0:db src_ip 64.185.157.216 dst_ip 79.239.84.223 action trap && tc filter add dev swp1 ingress protocol ip pref 10104 flower src_mac 02:56:60:7f:b5:16 dst_mac 02:f0:85:4c:ee:c0 src_ip 24.151.228.113 dst_ip 72.112.28.185 ip_proto tcp src_port 8357 dst_port 44085 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10105 flower src_mac 02:c1:b7:b8:2c:eb dst_mac 02:14:f9:95:82:01 vlan_id 1619 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10106 flower src_mac 02:3c:37:12:f9:45 dst_mac 02:e1:12:01:c9:d1 vlan_id 338 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:5a:6c:8e:21:15 dst_mac 02:77:4b:3c:74:19 vlan_id 3898 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10108 flower src_mac 02:84:1b:f1:ac:ff dst_mac 02:cb:77:5c:fc:61 action trap && tc filter add dev swp1 ingress protocol ip pref 10109 flower src_mac 02:c0:02:8d:ff:ca dst_mac 02:f8:4c:69:53:a7 src_ip 126.193.1.35 dst_ip 73.230.141.194 ip_proto icmp code 136 type 15 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10110 flower src_mac 02:8c:59:eb:e6:11 dst_mac 02:58:85:03:7d:4e vlan_id 3930 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10111 flower src_mac 02:9e:4a:9a:93:1d dst_mac 02:85:3b:ff:47:ff vlan_id 3601 vlan_ethtype 0x0800 src_ip 12.175.242.38 dst_ip 32.148.112.81 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10112 flower src_mac 02:70:26:6d:51:73 dst_mac 02:ab:2c:78:69:c8 vlan_id 4022 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10113 flower src_mac 02:2f:4e:1c:61:c0 dst_mac 02:d9:77:db:5d:b6 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10114 flower src_mac 02:e1:5c:5e:0f:7c dst_mac 02:89:aa:17:e4:b6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10115 flower src_mac 02:65:7b:0e:22:f3 dst_mac 02:78:db:41:d1:a9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10116 flower src_mac 02:b7:16:bc:34:5b dst_mac 02:0f:da:66:21:db vlan_id 1366 vlan_ethtype 0x0800 src_ip 84.59.149.63 dst_ip 117.224.85.70 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10117 flower src_mac 02:a0:d7:0d:7f:19 dst_mac 02:3a:13:18:c2:a9 vlan_id 2762 vlan_ethtype ipv4 src_ip 58.194.105.14 dst_ip 100.143.62.200 action trap && tc filter add dev swp1 ingress protocol ip pref 10118 flower src_mac 02:26:d6:b5:d2:2b dst_mac 02:86:25:99:35:f3 src_ip 103.37.127.169 dst_ip 105.62.69.129 ip_proto tcp src_port 26237 dst_port 40147 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10119 flower src_mac 02:ed:9b:a0:62:ec dst_mac 02:fa:32:22:c7:05 vlan_id 2482 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10120 flower src_mac 02:3d:35:e9:dc:59 dst_mac 02:e6:88:6c:01:b0 vlan_id 1571 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10121 flower src_mac 02:aa:cb:65:37:c7 dst_mac 02:b1:90:08:03:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10122 flower src_mac 02:7b:94:2c:79:f1 dst_mac 02:14:60:61:f8:9a vlan_id 2733 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10123 flower src_mac 02:9e:e8:d2:27:27 dst_mac 02:3c:87:47:a2:54 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10124 flower src_mac 02:20:eb:49:00:1d dst_mac 02:64:14:9b:cc:23 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10125 flower src_mac 02:d6:1d:48:5a:49 dst_mac 02:34:02:4c:a8:2d src_ip 92.82.126.39 dst_ip 103.163.174.85 ip_proto tcp src_port 8231 dst_port 30652 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10126 flower src_mac 02:8a:e0:33:29:1f dst_mac 02:a1:98:ec:c4:fd vlan_id 1182 vlan_ethtype ip src_ip 44.155.126.169 dst_ip 12.142.102.60 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10127 flower src_mac 02:af:db:d7:81:61 dst_mac 02:7b:6a:43:97:31 src_ip 75.159.150.12 dst_ip 101.0.173.79 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10128 flower src_mac 02:80:98:98:e4:f8 dst_mac 02:74:91:21:19:fe vlan_id 1134 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10129 flower src_mac 02:3c:76:59:29:74 dst_mac 02:d5:a7:bb:e0:4e vlan_id 1345 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10130 flower src_mac 02:85:24:6e:2f:6c dst_mac 02:0c:1a:fa:74:aa src_ip 96.50.135.75 dst_ip 26.240.228.205 ip_proto icmp code 44 type 15 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10131 flower src_mac 02:1e:5b:cc:31:51 dst_mac 02:0c:cd:f4:91:6e src_ip 40.219.47.234 dst_ip 107.179.127.228 ip_proto tcp src_port 54988 dst_port 49199 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10132 flower src_mac 02:1b:4e:3c:09:15 dst_mac 02:c3:59:d6:c7:cf vlan_id 176 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10133 flower src_mac 02:c0:c4:ed:eb:2b dst_mac 02:87:63:5e:66:78 vlan_id 4003 vlan_ethtype ip src_ip 74.5.183.89 dst_ip 69.9.49.237 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10134 flower src_mac 02:ef:cd:79:89:a4 dst_mac 02:75:35:ad:00:3b vlan_id 3632 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10135 flower src_mac 02:7e:52:61:33:63 dst_mac 02:ac:57:e5:36:d7 vlan_id 3236 vlan_ethtype ip src_ip 69.191.71.103 dst_ip 44.10.152.156 ip_proto udp src_port 8231 dst_port 6181 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10136 flower src_mac 02:b7:40:cb:4e:58 dst_mac 02:ba:7c:dd:ae:41 vlan_id 137 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10137 flower src_mac 02:2b:a5:38:74:47 dst_mac 02:4f:7f:bb:b7:f9 vlan_id 973 vlan_ethtype ip src_ip 115.199.170.200 dst_ip 66.217.117.112 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10138 flower src_mac 02:84:a2:48:8f:6f dst_mac 02:1c:50:e9:c7:37 vlan_id 1234 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10139 flower src_mac 02:a0:6c:95:8c:7d dst_mac 02:76:a5:55:5b:78 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10140 flower src_mac 02:21:9c:52:74:3a dst_mac 02:ea:43:7f:cd:30 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10141 flower src_mac 02:a4:79:e2:e8:01 dst_mac 02:a4:fc:01:9b:83 vlan_id 3035 vlan_ethtype ipv4 src_ip 24.172.107.85 dst_ip 80.60.18.107 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10142 flower src_mac 02:79:fb:a6:ac:59 dst_mac 02:ff:8a:a3:df:a0 src_ip 95.69.77.157 dst_ip 107.11.106.120 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10143 flower src_mac 02:48:05:4c:c4:32 dst_mac 02:7e:b5:9f:22:1e vlan_id 3659 vlan_ethtype ip src_ip 98.248.136.167 dst_ip 104.152.144.240 ip_proto udp src_port 32567 dst_port 12388 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10144 flower src_mac 02:86:aa:2f:7e:0d dst_mac 02:36:f0:b0:c8:58 vlan_id 3415 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10145 flower src_mac 02:cd:c6:9b:23:63 dst_mac 02:38:ef:2f:e2:56 vlan_id 3639 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10146 flower src_mac 02:16:f2:21:37:5f dst_mac 02:be:98:a4:aa:bf action pass && tc filter add dev swp1 ingress protocol ip pref 10147 flower src_mac 02:7a:1c:71:b2:a7 dst_mac 02:12:5b:60:88:a0 src_ip 98.176.227.141 dst_ip 59.249.37.146 ip_proto icmp code 210 type 3 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10148 flower src_mac 02:c7:e5:de:88:ce dst_mac 02:44:17:65:f4:4b src_ip 35.156.223.140 dst_ip 55.119.106.244 action pass && tc filter add dev swp1 ingress protocol ip pref 10149 flower src_mac 02:72:3c:ab:9c:74 dst_mac 02:04:f7:f9:8d:a2 src_ip 54.12.13.48 dst_ip 71.250.43.76 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10150 flower src_mac 02:4c:54:a6:56:7e dst_mac 02:08:27:98:05:6f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10151 flower src_mac 02:3d:ef:5c:ca:0b dst_mac 02:17:fe:c3:53:d9 vlan_id 2754 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10152 flower src_mac 02:03:60:b4:be:00 dst_mac 02:a4:64:04:32:12 vlan_id 489 vlan_ethtype ipv4 src_ip 79.180.126.57 dst_ip 22.108.247.227 action trap && tc filter add dev swp1 ingress protocol ip pref 10153 flower src_mac 02:24:11:26:d1:4c dst_mac 02:f9:e0:14:0d:90 src_ip 78.120.84.145 dst_ip 110.20.77.224 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10154 flower src_mac 02:99:b6:ba:52:14 dst_mac 02:f4:f8:8e:b7:40 vlan_id 2226 vlan_ethtype 0x0800 src_ip 67.43.226.197 dst_ip 91.43.96.42 ip_proto tcp src_port 22770 dst_port 24178 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10155 flower src_mac 02:a0:78:64:15:70 dst_mac 02:4b:c0:6c:db:96 vlan_id 601 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10156 flower src_mac 02:51:58:cb:56:c0 dst_mac 02:77:8a:19:e7:2e action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10157 flower src_mac 02:4d:b1:37:9e:f7 dst_mac 02:d1:c8:35:50:ad src_ip 32.217.167.77 dst_ip 90.18.86.241 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10158 flower src_mac 02:43:15:f6:c2:40 dst_mac 02:80:f2:d4:ce:90 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10159 flower src_mac 02:df:72:3c:85:ab dst_mac 02:f3:28:b8:50:b0 action trap && tc filter add dev swp1 ingress protocol ip pref 10160 flower src_mac 02:df:ac:e9:f9:a7 dst_mac 02:58:eb:76:11:96 src_ip 75.27.83.113 dst_ip 124.97.83.69 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10161 flower src_mac 02:79:e7:2a:20:79 dst_mac 02:32:d4:a1:e2:6c action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10162 flower src_mac 02:f3:65:a7:6a:02 dst_mac 02:fa:f6:0c:ba:a1 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10163 flower src_mac 02:01:78:5d:91:e2 dst_mac 02:e2:07:78:40:cb vlan_id 554 vlan_ethtype ip src_ip 115.181.92.159 dst_ip 124.212.32.187 ip_proto udp src_port 22241 dst_port 47980 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10164 flower src_mac 02:22:e7:e8:b0:3d dst_mac 02:87:17:0a:2a:f9 vlan_id 3395 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10165 flower src_mac 02:45:08:94:bf:b3 dst_mac 02:05:64:a9:1a:66 src_ip 34.97.225.231 dst_ip 48.146.228.40 ip_proto icmp code 249 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10166 flower src_mac 02:0a:27:69:31:26 dst_mac 02:3b:59:8b:1d:bd vlan_id 4086 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10167 flower src_mac 02:4d:e7:05:68:bb dst_mac 02:68:0e:cc:46:d9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10168 flower src_mac 02:ce:90:6f:1a:7d dst_mac 02:c8:28:ca:36:3f vlan_id 3722 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10169 flower src_mac 02:2d:f6:6f:9d:0c dst_mac 02:25:d0:4d:1e:17 vlan_id 2834 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10170 flower src_mac 02:57:00:42:c7:a1 dst_mac 02:c2:a0:51:f6:18 vlan_id 3208 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10171 flower src_mac 02:33:fd:f9:9e:5c dst_mac 02:8b:d9:d1:bb:4c vlan_id 367 vlan_ethtype ipv4 src_ip 59.143.126.46 dst_ip 79.136.48.8 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10172 flower src_mac 02:71:a6:05:0c:9d dst_mac 02:fd:dc:0f:f3:d8 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10173 flower src_mac 02:02:2f:cb:66:21 dst_mac 02:7e:1c:7b:a5:4c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10174 flower src_mac 02:39:ba:ae:88:72 dst_mac 02:92:b9:c0:8c:dc vlan_id 1516 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:3f:59:3f:6d:4f dst_mac 02:bb:86:58:53:7a vlan_id 1019 vlan_ethtype 0x0800 src_ip 125.153.48.86 dst_ip 72.128.32.202 ip_proto tcp src_port 4067 dst_port 48731 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10176 flower src_mac 02:22:2c:28:7a:a4 dst_mac 02:67:7f:f6:a6:4a src_ip 120.188.180.146 dst_ip 72.240.207.56 ip_proto icmp code 70 type 17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10177 flower src_mac 02:61:77:1f:89:c6 dst_mac 02:cb:e2:58:e3:3a vlan_id 1547 vlan_ethtype ipv4 src_ip 32.177.97.217 dst_ip 38.59.166.139 ip_proto udp src_port 2318 dst_port 51215 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10178 flower src_mac 02:d0:f6:93:98:14 dst_mac 02:47:66:6d:69:70 vlan_id 2134 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10179 flower src_mac 02:82:02:a5:81:9e dst_mac 02:77:84:3b:2f:b9 src_ip 68.137.80.8 dst_ip 24.34.118.174 ip_proto udp src_port 15399 dst_port 41493 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10180 flower src_mac 02:de:47:45:bc:65 dst_mac 02:5d:34:54:73:8d src_ip 74.251.11.209 dst_ip 121.150.199.131 ip_proto icmp code 25 type 14 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10181 flower src_mac 02:67:1e:4c:7b:e0 dst_mac 02:2b:41:16:3f:81 src_ip 21.208.154.212 dst_ip 125.106.204.105 ip_proto udp src_port 33096 dst_port 58020 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10182 flower src_mac 02:7c:4e:11:51:4d dst_mac 02:22:6d:36:f0:6b vlan_id 2387 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10183 flower src_mac 02:76:41:a4:df:68 dst_mac 02:9e:08:e9:6a:e3 src_ip 85.213.128.184 dst_ip 47.135.76.191 ip_proto icmp code 66 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10184 flower src_mac 02:bb:d9:dc:c2:c6 dst_mac 02:f6:0b:43:73:84 vlan_id 2547 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10185 flower src_mac 02:11:de:ee:3d:b4 dst_mac 02:c1:cf:90:d6:d6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10186 flower src_mac 02:e9:04:53:04:27 dst_mac 02:dc:75:e9:97:1a vlan_id 3369 vlan_ethtype ipv4 src_ip 84.204.219.166 dst_ip 77.139.106.230 ip_proto tcp src_port 39842 dst_port 3254 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10187 flower src_mac 02:fa:be:8a:91:78 dst_mac 02:ee:8b:84:43:9a vlan_id 3871 vlan_ethtype ip src_ip 72.243.70.45 dst_ip 111.42.100.96 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10188 flower src_mac 02:66:80:55:6b:9f dst_mac 02:a6:f8:9f:e9:72 vlan_id 982 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10189 flower src_mac 02:23:46:be:d3:31 dst_mac 02:f2:05:c3:42:9f action drop && tc filter add dev swp1 ingress protocol ip pref 10190 flower src_mac 02:2e:6a:b7:87:0c dst_mac 02:7f:cc:13:51:bb src_ip 105.225.138.6 dst_ip 66.148.62.151 ip_proto icmp code 69 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10191 flower src_mac 02:ac:4e:6d:33:fd dst_mac 02:0a:83:19:b5:8f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10192 flower src_mac 02:bc:1a:a5:47:73 dst_mac 02:3e:fb:6a:04:17 vlan_id 3195 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10193 flower src_mac 02:77:98:d0:1d:b4 dst_mac 02:3f:89:16:99:ba action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10194 flower src_mac 02:b0:4f:32:dd:15 dst_mac 02:1a:e7:ab:eb:fd vlan_id 1959 vlan_ethtype ipv4 src_ip 58.200.126.113 dst_ip 67.135.137.191 ip_proto tcp src_port 62261 dst_port 47048 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10195 flower src_mac 02:32:7d:e4:1e:0b dst_mac 02:72:f2:91:d5:aa action drop && tc filter add dev swp1 ingress protocol ip pref 10196 flower src_mac 02:24:f5:8e:8a:3e dst_mac 02:76:b5:33:75:09 src_ip 53.139.211.60 dst_ip 116.98.125.47 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10197 flower src_mac 02:cb:1e:17:4c:45 dst_mac 02:e4:de:8a:1c:f7 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10198 flower src_mac 02:b0:81:dc:ae:12 dst_mac 02:01:68:43:68:a5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10199 flower src_mac 02:c4:71:f6:4c:fa dst_mac 02:80:32:b9:49:56 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10200 flower src_mac 02:7f:29:62:c1:52 dst_mac 02:51:37:11:a7:e4 vlan_id 1408 vlan_ethtype 0x0800 src_ip 37.131.242.45 dst_ip 90.234.44.10 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10201 flower src_mac 02:0c:35:2a:63:8d dst_mac 02:9d:1f:b7:84:72 src_ip 46.93.72.134 dst_ip 35.247.142.76 ip_proto icmp code 158 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10202 flower src_mac 02:d6:0d:1d:c1:97 dst_mac 02:a1:a6:5d:4e:2c vlan_id 251 vlan_ethtype ip src_ip 52.253.50.192 dst_ip 36.85.242.144 ip_proto udp src_port 44982 dst_port 15044 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10203 flower src_mac 02:7c:08:df:2e:42 dst_mac 02:32:84:f0:b9:57 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10204 flower src_mac 02:e1:a1:4e:8b:84 dst_mac 02:aa:39:04:f4:68 vlan_id 3728 vlan_ethtype 0x0800 src_ip 103.12.133.214 dst_ip 105.194.147.34 ip_proto udp src_port 32521 dst_port 4435 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10205 flower src_mac 02:8a:10:c6:e4:2f dst_mac 02:5d:72:02:55:28 src_ip 35.42.33.83 dst_ip 27.106.8.152 ip_proto icmp code 244 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10206 flower src_mac 02:e1:82:e1:9d:d6 dst_mac 02:43:fc:0a:3b:49 vlan_id 4010 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10207 flower src_mac 02:1f:95:66:a0:a1 dst_mac 02:0b:27:86:45:34 src_ip 73.248.156.229 dst_ip 110.246.175.161 ip_proto icmp code 137 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10208 flower src_mac 02:58:7d:21:12:a1 dst_mac 02:1a:eb:42:2a:58 vlan_id 2238 vlan_ethtype ipv4 src_ip 76.183.80.10 dst_ip 124.202.248.101 ip_proto udp src_port 26693 dst_port 53150 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10209 flower src_mac 02:cc:1b:fc:ff:43 dst_mac 02:54:89:0c:33:46 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10210 flower src_mac 02:4d:00:63:6f:45 dst_mac 02:1a:e8:6a:01:0e src_ip 64.103.236.165 dst_ip 70.164.131.159 ip_proto udp src_port 65025 dst_port 2447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10211 flower src_mac 02:b8:cb:0f:da:7e dst_mac 02:39:37:54:e3:76 vlan_id 1133 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10212 flower src_mac 02:fe:79:dc:3d:b9 dst_mac 02:8c:68:c0:c6:0e action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10213 flower src_mac 02:77:15:49:ec:0e dst_mac 02:86:cf:b8:68:29 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10214 flower src_mac 02:eb:0b:75:50:49 dst_mac 02:23:1e:33:9f:e4 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10215 flower src_mac 02:9e:f3:90:eb:e8 dst_mac 02:66:c9:2c:b0:6c src_ip 42.193.65.223 dst_ip 91.110.246.200 ip_proto icmp code 224 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10216 flower src_mac 02:38:ed:ff:83:16 dst_mac 02:5a:0e:4c:38:f9 vlan_id 663 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10217 flower src_mac 02:28:62:1c:28:37 dst_mac 02:70:80:dd:b0:c0 vlan_id 2499 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10218 flower src_mac 02:7f:ea:17:ae:f8 dst_mac 02:98:f9:2a:79:a9 vlan_id 3292 vlan_ethtype ipv4 src_ip 91.145.67.123 dst_ip 68.162.46.124 ip_proto tcp src_port 60118 dst_port 39681 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10219 flower src_mac 02:17:d3:c6:14:77 dst_mac 02:54:1a:29:e6:90 vlan_id 462 vlan_ethtype 0x0800 src_ip 96.48.112.45 dst_ip 88.54.236.40 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10220 flower src_mac 02:60:9a:11:fc:a1 dst_mac 02:0a:17:2b:c6:04 src_ip 34.245.8.222 dst_ip 22.183.97.220 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10221 flower src_mac 02:02:e8:63:97:a7 dst_mac 02:f6:7e:b7:88:87 vlan_id 2883 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10222 flower src_mac 02:b4:06:2d:39:ea dst_mac 02:3f:2e:b3:86:72 vlan_id 3525 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10223 flower src_mac 02:e7:7d:26:32:a3 dst_mac 02:e1:f3:31:e1:38 src_ip 77.56.250.33 dst_ip 92.21.44.50 ip_proto icmp code 138 type 17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10224 flower src_mac 02:63:47:04:2b:f2 dst_mac 02:a9:20:86:6f:ef vlan_id 2557 vlan_ethtype ipv4 src_ip 28.80.196.215 dst_ip 27.226.149.144 ip_proto tcp src_port 9744 dst_port 56164 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10225 flower src_mac 02:1a:4a:fa:75:ad dst_mac 02:78:d8:5d:c9:85 vlan_id 967 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10226 flower src_mac 02:60:54:08:86:61 dst_mac 02:1b:72:2c:1a:a2 vlan_id 295 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10227 flower src_mac 02:e5:58:64:92:ac dst_mac 02:a7:fe:e5:bb:d9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10228 flower src_mac 02:f0:0e:b4:b1:23 dst_mac 02:44:0f:6c:64:99 vlan_id 601 vlan_ethtype 0x0800 src_ip 32.199.224.62 dst_ip 74.110.85.88 ip_proto tcp src_port 1113 dst_port 49489 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10229 flower src_mac 02:4d:fe:fb:f7:79 dst_mac 02:c0:07:5a:94:7f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10230 flower src_mac 02:b6:85:3d:f4:64 dst_mac 02:ec:3f:a2:2f:89 vlan_id 2690 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10231 flower src_mac 02:2b:cb:62:4b:6e dst_mac 02:e4:20:75:af:23 src_ip 32.220.23.10 dst_ip 115.234.237.71 ip_proto icmp code 75 type 11 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10232 flower src_mac 02:d3:ae:96:08:34 dst_mac 02:76:ce:1b:89:72 src_ip 35.135.121.85 dst_ip 115.206.214.13 ip_proto icmp code 55 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10233 flower src_mac 02:b3:d3:7c:4b:24 dst_mac 02:6f:97:a1:b7:2f vlan_id 970 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10234 flower src_mac 02:84:d1:7e:c2:2a dst_mac 02:9c:e6:4b:5c:63 src_ip 110.127.1.133 dst_ip 74.182.58.53 ip_proto udp src_port 58126 dst_port 60521 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10235 flower src_mac 02:ab:08:51:a5:5b dst_mac 02:15:1c:04:5b:3d action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10236 flower src_mac 02:ed:2e:92:db:1f dst_mac 02:8b:ca:b3:c3:95 src_ip 99.247.123.131 dst_ip 107.111.97.151 ip_proto tcp src_port 28652 dst_port 48079 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10237 flower src_mac 02:1a:07:1d:46:80 dst_mac 02:f1:71:d9:97:18 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10238 flower src_mac 02:7b:64:c9:09:03 dst_mac 02:34:1a:38:7b:42 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10239 flower src_mac 02:92:2f:cf:6e:43 dst_mac 02:71:f3:a4:0f:72 vlan_id 1826 vlan_ethtype ip src_ip 24.68.1.108 dst_ip 56.45.197.151 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10240 flower src_mac 02:f3:06:03:64:63 dst_mac 02:47:1f:72:fb:52 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10241 flower src_mac 02:de:be:a1:cd:c9 dst_mac 02:0a:2c:ed:e7:80 vlan_id 2919 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10242 flower src_mac 02:51:5c:a2:f2:48 dst_mac 02:b8:bd:e4:af:28 vlan_id 3385 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10243 flower src_mac 02:87:f3:42:83:20 dst_mac 02:76:88:8e:16:99 vlan_id 2620 vlan_ethtype 0x0800 src_ip 23.161.22.58 dst_ip 83.101.254.5 ip_proto udp src_port 26936 dst_port 37966 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10244 flower src_mac 02:8f:83:03:c5:9f dst_mac 02:04:60:7c:67:63 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10245 flower src_mac 02:f2:2b:fd:f9:1c dst_mac 02:db:cf:e4:46:70 vlan_id 59 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10246 flower src_mac 02:3c:66:88:2b:7f dst_mac 02:c6:12:8b:6e:da vlan_id 294 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10247 flower src_mac 02:9f:d1:f8:7a:e0 dst_mac 02:45:0b:4b:2b:96 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10248 flower src_mac 02:af:c0:41:22:88 dst_mac 02:2d:37:79:a7:d7 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10249 flower src_mac 02:90:c3:b8:fa:35 dst_mac 02:1c:7e:f1:3a:ee vlan_id 1126 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10250 flower src_mac 02:b7:54:71:3b:a6 dst_mac 02:cf:d7:bf:ba:40 vlan_id 2957 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10251 flower src_mac 02:b0:0c:17:4c:b7 dst_mac 02:82:3b:93:e8:da src_ip 94.100.6.9 dst_ip 122.196.159.28 ip_proto tcp src_port 35137 dst_port 49930 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10252 flower src_mac 02:36:bb:b5:73:fa dst_mac 02:1d:b8:b6:e4:df action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10253 flower src_mac 02:3a:0a:95:f4:38 dst_mac 02:3f:5c:73:db:45 src_ip 61.73.143.189 dst_ip 50.198.100.147 ip_proto tcp src_port 15173 dst_port 15937 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10254 flower src_mac 02:f5:e6:07:9e:5a dst_mac 02:70:bc:83:29:ee vlan_id 4090 vlan_ethtype ipv4 src_ip 125.145.105.154 dst_ip 11.36.76.116 ip_proto tcp src_port 46947 dst_port 28526 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:b1:53:23:ac:c3 dst_mac 02:fc:77:b7:33:6d vlan_id 2007 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10256 flower src_mac 02:42:62:f1:34:d2 dst_mac 02:db:e5:f8:d9:5b vlan_id 1397 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10257 flower src_mac 02:a8:09:9a:77:e5 dst_mac 02:6b:15:2a:68:24 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10258 flower src_mac 02:4f:74:9d:36:8b dst_mac 02:87:51:e4:ca:2d src_ip 108.170.222.35 dst_ip 102.110.5.54 ip_proto udp src_port 17696 dst_port 13662 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10259 flower src_mac 02:a2:50:ff:a0:b5 dst_mac 02:a2:99:df:a9:73 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10260 flower src_mac 02:01:93:0b:ff:1c dst_mac 02:05:0c:0d:d6:14 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10261 flower src_mac 02:07:47:64:1a:a6 dst_mac 02:e4:c0:d7:d6:22 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10262 flower src_mac 02:02:d5:35:d1:df dst_mac 02:2b:5d:57:95:3a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10263 flower src_mac 02:d3:09:69:93:b9 dst_mac 02:ed:cf:ea:75:ff vlan_id 3624 vlan_ethtype ip src_ip 103.3.27.50 dst_ip 71.32.124.241 ip_proto tcp src_port 45444 dst_port 30564 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10264 flower src_mac 02:1a:1e:75:c6:de dst_mac 02:0f:51:50:b5:88 vlan_id 3847 vlan_ethtype ip src_ip 26.31.212.124 dst_ip 41.49.134.44 ip_proto udp src_port 17570 dst_port 11176 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10265 flower src_mac 02:dc:5c:db:ed:e0 dst_mac 02:2c:2d:0d:92:dc action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10266 flower src_mac 02:57:64:d1:aa:75 dst_mac 02:af:ae:53:ae:a8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10267 flower src_mac 02:d5:06:ee:a9:ad dst_mac 02:0f:22:24:e0:e1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10268 flower src_mac 02:bc:f3:02:79:11 dst_mac 02:94:f7:4c:05:21 vlan_id 3794 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10269 flower src_mac 02:4c:fd:97:f5:e1 dst_mac 02:75:59:2a:c5:7f vlan_id 3238 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10270 flower src_mac 02:68:b7:22:43:73 dst_mac 02:84:5d:c8:22:19 src_ip 107.218.134.149 dst_ip 78.174.204.77 ip_proto udp src_port 50399 dst_port 19527 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10271 flower src_mac 02:77:bd:74:75:7b dst_mac 02:c6:fd:6c:14:ed vlan_id 3677 vlan_ethtype 0x0800 src_ip 69.247.145.16 dst_ip 43.90.149.30 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10272 flower src_mac 02:1a:de:2f:55:1f dst_mac 02:7b:29:9a:70:f6 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10273 flower src_mac 02:3d:4b:98:bc:cd dst_mac 02:eb:bf:5a:17:1d src_ip 100.14.118.86 dst_ip 116.67.214.207 ip_proto icmp code 37 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10274 flower src_mac 02:82:0e:7f:ff:d5 dst_mac 02:5a:f5:d0:8a:47 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10275 flower src_mac 02:9b:bc:2b:ae:ec dst_mac 02:01:17:d3:86:27 vlan_id 3665 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10276 flower src_mac 02:ad:19:8e:fe:49 dst_mac 02:70:bd:01:f7:cc vlan_id 3611 vlan_ethtype 0x0800 src_ip 55.26.145.143 dst_ip 21.170.246.75 ip_proto udp src_port 17655 dst_port 17997 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10277 flower src_mac 02:46:39:03:d4:4c dst_mac 02:a4:94:77:a5:50 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10278 flower src_mac 02:e5:9d:da:91:46 dst_mac 02:2b:16:df:91:78 src_ip 68.212.53.209 dst_ip 89.12.194.163 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10279 flower src_mac 02:c2:0d:ea:67:c7 dst_mac 02:80:b9:90:67:de action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10280 flower src_mac 02:c4:c2:af:d3:b8 dst_mac 02:0d:4a:82:89:ef vlan_id 434 vlan_ethtype ipv4 src_ip 41.100.134.44 dst_ip 82.219.197.57 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10281 flower src_mac 02:12:30:27:9a:28 dst_mac 02:76:5d:d6:fd:22 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10282 flower src_mac 02:4b:6e:e4:27:2d dst_mac 02:6d:bd:47:9d:66 vlan_id 2744 vlan_ethtype ip src_ip 111.135.92.154 dst_ip 60.175.112.90 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10283 flower src_mac 02:d9:7c:42:f9:55 dst_mac 02:7d:9f:15:b5:f7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10284 flower src_mac 02:23:ce:b6:8e:fb dst_mac 02:ba:d7:4b:28:82 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10285 flower src_mac 02:b4:ae:72:30:6d dst_mac 02:a4:03:5b:5c:54 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10286 flower src_mac 02:44:0a:d0:a7:d2 dst_mac 02:2e:6b:8f:29:af action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10287 flower src_mac 02:65:a7:d6:87:f1 dst_mac 02:5f:65:c9:49:55 src_ip 122.189.235.45 dst_ip 97.34.213.59 ip_proto udp src_port 22516 dst_port 16229 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10288 flower src_mac 02:e9:e6:58:e9:6c dst_mac 02:74:ef:be:8f:64 vlan_id 3227 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10289 flower src_mac 02:cc:dc:d5:c7:cb dst_mac 02:82:22:01:c6:58 src_ip 65.224.10.3 dst_ip 68.70.170.65 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10290 flower src_mac 02:ca:32:f5:b4:c1 dst_mac 02:56:0d:ed:d1:e2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10291 flower src_mac 02:34:9e:d6:b7:a8 dst_mac 02:52:2d:e2:6d:77 vlan_id 2300 vlan_ethtype ip src_ip 42.163.174.214 dst_ip 61.124.87.215 ip_proto udp src_port 3151 dst_port 6280 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10292 flower src_mac 02:74:26:7f:e1:6d dst_mac 02:48:92:f0:46:8f vlan_id 2376 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10293 flower src_mac 02:a1:5d:32:6a:72 dst_mac 02:7e:74:17:6d:3d action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10294 flower src_mac 02:6b:70:a8:32:70 dst_mac 02:f6:1d:aa:c5:b2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10295 flower src_mac 02:e2:1f:71:14:d0 dst_mac 02:25:4f:6b:c0:cc action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10296 flower src_mac 02:0a:04:c0:2e:ac dst_mac 02:b2:b4:1e:26:bb vlan_id 2233 vlan_ethtype ipv4 src_ip 56.156.215.4 dst_ip 78.49.231.169 ip_proto udp src_port 39573 dst_port 46631 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10297 flower src_mac 02:9c:8d:27:2a:06 dst_mac 02:77:cb:ac:35:cf src_ip 61.125.234.15 dst_ip 60.0.24.123 ip_proto udp src_port 27699 dst_port 16815 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:f9:80:d5:ca:eb dst_mac 02:72:6c:c2:05:fe vlan_id 1669 vlan_ethtype ip src_ip 108.55.181.233 dst_ip 102.151.109.213 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10299 flower src_mac 02:73:8d:7a:8a:8c dst_mac 02:6e:f0:96:cc:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10300 flower src_mac 02:6f:ba:bd:1d:47 dst_mac 02:0e:af:09:a3:d9 vlan_id 289 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10301 flower src_mac 02:33:91:cd:7b:9d dst_mac 02:ba:10:56:41:88 vlan_id 3356 vlan_ethtype 0x0800 src_ip 98.100.231.67 dst_ip 32.198.189.10 ip_proto udp src_port 45443 dst_port 33230 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10302 flower src_mac 02:f4:ad:d1:c1:be dst_mac 02:96:72:cc:d6:89 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10303 flower src_mac 02:7f:8d:1e:04:50 dst_mac 02:30:b1:71:81:f4 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10304 flower src_mac 02:bd:9d:a1:5b:65 dst_mac 02:a6:1e:7b:7b:65 vlan_id 1119 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10305 flower src_mac 02:67:58:c7:ab:6b dst_mac 02:a2:d5:08:09:fb vlan_id 2514 vlan_ethtype ipv4 src_ip 111.145.44.151 dst_ip 28.247.172.210 ip_proto tcp src_port 56466 dst_port 36586 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10306 flower src_mac 02:d5:43:a9:18:6e dst_mac 02:6c:5a:db:68:55 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10307 flower src_mac 02:86:91:6d:c8:35 dst_mac 02:39:62:b4:8f:fd vlan_id 64 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10308 flower src_mac 02:f5:00:8a:7c:02 dst_mac 02:41:90:b9:ed:89 vlan_id 367 vlan_ethtype ip src_ip 71.242.89.209 dst_ip 86.238.34.120 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10309 flower src_mac 02:87:00:e6:6a:9a dst_mac 02:a5:a3:fe:fc:1a vlan_id 1145 vlan_ethtype ip src_ip 54.23.139.234 dst_ip 47.57.196.139 ip_proto tcp src_port 39145 dst_port 43957 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10310 flower src_mac 02:b2:29:56:d9:23 dst_mac 02:b7:f6:5f:d6:f3 vlan_id 2961 vlan_ethtype ipv4 src_ip 64.204.203.27 dst_ip 102.189.33.42 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10311 flower src_mac 02:b9:b9:38:1e:ae dst_mac 02:bb:94:af:74:60 vlan_id 1047 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10312 flower src_mac 02:b3:1a:77:e5:03 dst_mac 02:33:46:ab:77:b3 vlan_id 2206 vlan_ethtype ipv4 src_ip 20.9.53.175 dst_ip 14.164.48.32 ip_proto tcp src_port 38169 dst_port 54531 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10313 flower src_mac 02:2a:9c:f0:99:88 dst_mac 02:aa:8d:94:e7:5f action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10314 flower src_mac 02:4a:12:49:66:2c dst_mac 02:36:3d:55:b7:a3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10315 flower src_mac 02:ee:dd:0b:cd:79 dst_mac 02:05:b6:45:cc:ba action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10316 flower src_mac 02:6b:ab:8c:28:ba dst_mac 02:72:db:3c:19:30 vlan_id 3431 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10317 flower src_mac 02:d3:dd:42:6b:41 dst_mac 02:0b:97:4a:3d:76 vlan_id 96 vlan_ethtype ipv4 src_ip 124.108.14.79 dst_ip 73.199.181.196 ip_proto udp src_port 57742 dst_port 28305 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10318 flower src_mac 02:9a:eb:d6:3a:80 dst_mac 02:75:ce:3c:a1:1d vlan_id 3452 vlan_ethtype 0x0800 src_ip 37.204.9.125 dst_ip 19.170.85.233 ip_proto tcp src_port 29666 dst_port 12465 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10319 flower src_mac 02:e9:74:e7:94:c0 dst_mac 02:ad:29:d5:32:a5 vlan_id 3286 vlan_ethtype ip src_ip 59.72.149.97 dst_ip 102.93.238.165 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10320 flower src_mac 02:dc:e7:b8:e1:9d dst_mac 02:e5:14:af:c5:9b vlan_id 92 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10321 flower src_mac 02:68:93:44:a1:1f dst_mac 02:77:af:00:4f:ab vlan_id 2844 vlan_ethtype 0x0800 src_ip 109.46.216.35 dst_ip 93.155.121.59 ip_proto udp src_port 4145 dst_port 6133 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10322 flower src_mac 02:0a:d5:74:7f:f1 dst_mac 02:c9:66:c8:cd:97 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10323 flower src_mac 02:27:ec:41:cc:72 dst_mac 02:42:5d:34:bd:d4 src_ip 45.222.94.206 dst_ip 56.137.225.140 ip_proto udp src_port 5459 dst_port 17799 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10324 flower src_mac 02:ce:85:31:08:2f dst_mac 02:79:9a:0a:35:98 vlan_id 3874 vlan_ethtype ipv4 src_ip 53.67.85.45 dst_ip 107.53.58.240 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10325 flower src_mac 02:8d:c3:0d:c5:34 dst_mac 02:0c:de:0c:66:ee action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10326 flower src_mac 02:dc:47:39:25:bf dst_mac 02:85:8e:f6:9b:b8 vlan_id 137 vlan_ethtype ipv4 src_ip 44.138.166.94 dst_ip 87.61.22.39 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10327 flower src_mac 02:21:0b:1c:83:e1 dst_mac 02:7c:2d:35:3c:b4 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10328 flower src_mac 02:75:e6:5f:11:8a dst_mac 02:3a:c2:da:d0:01 src_ip 39.140.101.99 dst_ip 86.147.28.60 ip_proto tcp src_port 3251 dst_port 52354 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:6f:da:d9:c6:16 dst_mac 02:a6:d2:9d:83:dc vlan_id 2336 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10330 flower src_mac 02:39:aa:f3:42:1f dst_mac 02:a4:8a:9f:2d:46 src_ip 99.128.200.198 dst_ip 67.63.179.33 ip_proto icmp code 197 type 3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10331 flower src_mac 02:f2:69:20:d2:34 dst_mac 02:29:e1:86:5b:06 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10332 flower src_mac 02:48:63:60:b9:02 dst_mac 02:0b:70:78:80:ac action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10333 flower src_mac 02:91:0e:f1:94:7b dst_mac 02:ef:8b:87:09:6c action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10334 flower src_mac 02:37:83:ef:2b:b8 dst_mac 02:a6:4a:ce:a5:60 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10335 flower src_mac 02:ce:4e:35:36:9a dst_mac 02:44:ad:08:c6:5e vlan_id 32 vlan_ethtype ip src_ip 109.155.91.94 dst_ip 119.27.168.207 ip_proto udp src_port 32402 dst_port 13261 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10336 flower src_mac 02:18:5f:dd:4d:55 dst_mac 02:31:73:e2:a6:59 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10337 flower src_mac 02:c7:77:e5:ea:12 dst_mac 02:35:17:ad:a2:d9 vlan_id 728 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10338 flower src_mac 02:92:91:1c:c9:1a dst_mac 02:ac:ae:1a:04:ad vlan_id 207 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10339 flower src_mac 02:9c:87:ef:34:02 dst_mac 02:38:08:8a:e7:38 vlan_id 2673 vlan_ethtype ip src_ip 45.233.12.228 dst_ip 55.210.242.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10340 flower src_mac 02:dc:5e:83:69:b1 dst_mac 02:43:61:b2:8d:9f vlan_id 247 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10341 flower src_mac 02:d9:3a:ba:34:ef dst_mac 02:3e:06:c3:41:75 vlan_id 2079 vlan_ethtype 0x0800 src_ip 69.222.53.45 dst_ip 52.106.164.146 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10342 flower src_mac 02:ba:e2:74:f1:81 dst_mac 02:8c:ab:4b:47:a6 vlan_id 3451 vlan_ethtype ip src_ip 126.225.237.222 dst_ip 52.75.190.127 ip_proto tcp src_port 5733 dst_port 50368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10343 flower src_mac 02:35:fd:e8:2f:10 dst_mac 02:58:00:49:df:51 vlan_id 3107 vlan_ethtype 0x0800 src_ip 121.198.200.122 dst_ip 88.181.69.159 ip_proto tcp src_port 43526 dst_port 36761 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10344 flower src_mac 02:01:fb:40:82:bc dst_mac 02:50:fa:60:b5:fd vlan_id 3583 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10345 flower src_mac 02:54:96:b5:8a:7d dst_mac 02:e0:b0:df:db:6c vlan_id 4037 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10346 flower src_mac 02:dc:18:b5:91:a2 dst_mac 02:c2:4d:f5:21:8d vlan_id 2188 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:22:52:eb:40:90 dst_mac 02:df:fc:35:4f:9f vlan_id 262 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10348 flower src_mac 02:eb:23:bf:82:0a dst_mac 02:ee:14:4e:2b:5e vlan_id 1674 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10349 flower src_mac 02:2e:2c:dd:b5:d2 dst_mac 02:e9:35:3f:a9:96 src_ip 22.253.120.55 dst_ip 115.144.43.241 ip_proto icmp code 152 type 11 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:f7:2f:18:84:b2 dst_mac 02:aa:32:eb:40:b5 vlan_id 2062 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10351 flower src_mac 02:6f:ec:51:27:a4 dst_mac 02:2d:fd:72:ef:2f action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10352 flower src_mac 02:47:16:88:ac:bc dst_mac 02:9b:e3:71:cb:08 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10353 flower src_mac 02:5e:7f:5c:71:24 dst_mac 02:f9:85:84:30:21 src_ip 48.212.137.150 dst_ip 93.135.100.140 ip_proto icmp code 26 type 18 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10354 flower src_mac 02:13:4f:02:ad:35 dst_mac 02:39:9b:4c:31:7d src_ip 48.14.220.113 dst_ip 31.205.163.224 action trap && tc filter add dev swp1 ingress protocol ip pref 10355 flower src_mac 02:e1:9b:4d:48:d2 dst_mac 02:c9:f1:29:a1:5d src_ip 17.81.23.212 dst_ip 59.39.219.208 ip_proto udp src_port 5527 dst_port 6163 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10356 flower src_mac 02:ad:81:7d:32:02 dst_mac 02:c1:30:31:eb:73 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10357 flower src_mac 02:37:e7:5e:b2:80 dst_mac 02:8d:e9:dd:5d:ba action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10358 flower src_mac 02:84:ea:24:4f:2b dst_mac 02:90:8b:bb:1c:6e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10359 flower src_mac 02:16:bd:bb:ce:fa dst_mac 02:b4:0f:dc:97:d5 vlan_id 2746 vlan_ethtype 0x0800 src_ip 60.140.124.225 dst_ip 70.169.230.101 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10360 flower src_mac 02:c0:f4:1c:a0:87 dst_mac 02:78:8b:b8:00:86 vlan_id 2628 vlan_ethtype 0x0800 src_ip 94.200.249.181 dst_ip 21.24.216.46 ip_proto udp src_port 17302 dst_port 38272 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10361 flower src_mac 02:ab:f5:4c:20:92 dst_mac 02:ac:5c:d1:e5:ca action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10362 flower src_mac 02:0b:e5:98:a3:f0 dst_mac 02:3a:a7:29:79:79 vlan_id 3959 vlan_ethtype 0x0800 src_ip 18.26.37.212 dst_ip 124.44.190.5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10363 flower src_mac 02:6c:1c:21:90:36 dst_mac 02:21:16:a1:5b:d4 vlan_id 3812 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10364 flower src_mac 02:c1:50:36:8d:f6 dst_mac 02:f6:8b:93:e8:0f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10365 flower src_mac 02:08:b6:2b:96:c9 dst_mac 02:45:e9:5c:2b:62 vlan_id 75 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10366 flower src_mac 02:9c:d1:a2:95:cf dst_mac 02:ed:91:b9:10:65 vlan_id 1153 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10367 flower src_mac 02:7a:a8:03:93:c8 dst_mac 02:df:88:60:c6:d8 src_ip 20.153.17.203 dst_ip 100.172.222.243 ip_proto udp src_port 54385 dst_port 31002 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10368 flower src_mac 02:7c:87:f2:9f:de dst_mac 02:08:2b:6d:20:37 vlan_id 3975 vlan_ethtype 0x0800 src_ip 72.213.62.12 dst_ip 17.17.210.95 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10369 flower src_mac 02:d0:2a:14:13:de dst_mac 02:31:14:35:48:ba action drop && tc filter add dev swp1 ingress protocol ip pref 10370 flower src_mac 02:c7:5c:80:0d:96 dst_mac 02:6c:e8:c3:8e:41 src_ip 59.236.152.22 dst_ip 123.77.122.93 ip_proto tcp src_port 37856 dst_port 50854 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10371 flower src_mac 02:de:c0:e5:85:00 dst_mac 02:d8:b3:42:8f:d5 vlan_id 1889 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10372 flower src_mac 02:5b:b4:29:06:08 dst_mac 02:ae:d8:fb:e6:e0 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10373 flower src_mac 02:d5:56:ec:40:ae dst_mac 02:e1:2c:4b:61:77 action drop && tc filter add dev swp1 ingress protocol ip pref 10374 flower src_mac 02:f9:75:6b:31:10 dst_mac 02:ef:4e:32:56:e6 src_ip 51.20.27.106 dst_ip 72.223.130.142 ip_proto icmp code 134 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10375 flower src_mac 02:14:02:96:eb:a4 dst_mac 02:b9:a0:9a:e4:47 vlan_id 3856 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10376 flower src_mac 02:a9:ef:4f:0c:df dst_mac 02:ac:1c:8f:2f:10 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10377 flower src_mac 02:e1:eb:e1:14:9b dst_mac 02:3d:32:b0:80:80 vlan_id 2230 vlan_ethtype 0x0800 src_ip 111.61.165.249 dst_ip 71.122.239.88 ip_proto udp src_port 53642 dst_port 63099 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10378 flower src_mac 02:39:96:b6:fc:6b dst_mac 02:04:9b:9e:b5:fd vlan_id 3745 vlan_ethtype ip src_ip 85.163.212.26 dst_ip 12.62.215.2 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10379 flower src_mac 02:ad:eb:6e:41:76 dst_mac 02:2f:d7:95:18:a4 vlan_id 367 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10380 flower src_mac 02:13:99:0b:f9:a2 dst_mac 02:93:6f:4b:16:5e action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10381 flower src_mac 02:d4:a3:c2:ce:2a dst_mac 02:99:f4:4d:80:29 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10382 flower src_mac 02:fa:c8:ef:89:53 dst_mac 02:46:83:bd:fd:95 vlan_id 951 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10383 flower src_mac 02:a8:08:de:21:62 dst_mac 02:f9:11:8c:c8:50 vlan_id 3390 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10384 flower src_mac 02:37:7b:cf:d0:56 dst_mac 02:5e:ba:31:15:13 vlan_id 550 vlan_ethtype 0x0800 src_ip 32.209.19.187 dst_ip 105.177.0.127 ip_proto tcp src_port 35338 dst_port 36405 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10385 flower src_mac 02:d2:fa:03:22:80 dst_mac 02:bd:ef:3f:f8:89 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10386 flower src_mac 02:64:a9:1a:2f:47 dst_mac 02:bb:67:91:52:17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10387 flower src_mac 02:64:cd:a0:2d:6a dst_mac 02:0e:bf:fc:14:11 vlan_id 818 vlan_ethtype 0x0800 src_ip 13.125.206.114 dst_ip 39.11.187.124 ip_proto udp src_port 12987 dst_port 36159 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10388 flower src_mac 02:80:93:e2:15:60 dst_mac 02:32:bb:ea:dc:b3 src_ip 119.151.6.21 dst_ip 63.166.11.203 ip_proto udp src_port 14385 dst_port 58440 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10389 flower src_mac 02:a7:a8:cd:8e:78 dst_mac 02:d4:21:4c:89:8a vlan_id 3561 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10390 flower src_mac 02:9e:4d:e5:30:5f dst_mac 02:92:eb:61:7d:19 vlan_id 3195 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10391 flower src_mac 02:c4:11:55:9c:ba dst_mac 02:22:6f:04:be:e9 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10392 flower src_mac 02:27:41:a1:e2:49 dst_mac 02:81:ed:29:23:52 vlan_id 3487 vlan_ethtype 0x0800 src_ip 101.98.128.215 dst_ip 41.55.188.49 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10393 flower src_mac 02:56:77:d2:22:83 dst_mac 02:55:05:29:f9:54 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10394 flower src_mac 02:0a:3f:30:b9:24 dst_mac 02:e4:b5:14:3c:9a vlan_id 2822 vlan_ethtype ipv4 src_ip 20.245.219.179 dst_ip 19.131.110.216 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10395 flower src_mac 02:dd:36:a7:5f:0f dst_mac 02:a9:61:4d:da:a2 vlan_id 1730 vlan_ethtype 0x0800 src_ip 30.188.110.22 dst_ip 37.54.87.11 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10396 flower src_mac 02:af:1a:ba:8e:90 dst_mac 02:51:2d:82:2b:81 vlan_id 2311 vlan_ethtype ipv4 src_ip 69.93.197.192 dst_ip 20.230.100.196 ip_proto tcp src_port 950 dst_port 5610 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10397 flower src_mac 02:63:39:d8:b1:5b dst_mac 02:dc:bd:f3:fc:62 src_ip 13.65.213.205 dst_ip 52.36.222.111 ip_proto tcp src_port 26041 dst_port 34287 action trap && tc filter add dev swp1 ingress protocol ip pref 10398 flower src_mac 02:19:59:24:f0:eb dst_mac 02:f9:0b:c4:b3:91 src_ip 19.17.110.175 dst_ip 30.184.152.49 ip_proto icmp code 154 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10399 flower src_mac 02:95:fe:3e:7f:09 dst_mac 02:56:ee:69:46:01 src_ip 121.155.72.118 dst_ip 30.61.12.200 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp1 ingress protocol ipv4 pref 10000 flower src_mac 02:9d:da:c0:5f:ec dst_mac 02:aa:1b:7c:e7:98 src_ip 118.153.250.62 dst_ip 112.215.188.56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10001 flower src_mac 02:ac:ab:d3:f6:60 dst_mac 02:40:0c:e7:79:dd vlan_id 2304 vlan_ethtype 0x0800 src_ip 94.180.253.239 dst_ip 115.79.122.45 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10002 flower src_mac 02:77:12:87:02:ff dst_mac 02:6d:ec:e5:d5:fb vlan_id 2960 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10003 flower src_mac 02:cb:dd:0f:48:92 dst_mac 02:49:45:84:54:05 vlan_id 2297 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10004 flower src_mac 02:b2:92:5b:23:31 dst_mac 02:65:98:89:cd:53 vlan_id 957 vlan_ethtype ip src_ip 123.174.178.195 dst_ip 84.181.226.137 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10005 flower src_mac 02:f4:4a:6c:f3:20 dst_mac 02:c1:a7:22:5f:e2 vlan_id 2676 vlan_ethtype 0x0800 src_ip 27.39.192.7 dst_ip 120.114.97.10 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10006 flower src_mac 02:ce:ee:27:69:7c dst_mac 02:72:c9:56:9c:3b vlan_id 3678 vlan_ethtype 0x0800 src_ip 15.169.236.214 dst_ip 67.137.26.80 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10007 flower src_mac 02:32:8a:eb:15:06 dst_mac 02:53:8c:9e:59:3a vlan_id 617 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10008 flower src_mac 02:dc:92:77:05:ef dst_mac 02:7b:19:c0:c9:23 vlan_id 62 vlan_ethtype ip src_ip 91.147.201.211 dst_ip 28.189.172.232 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10009 flower src_mac 02:49:37:ec:d8:ed dst_mac 02:ce:ec:e3:de:87 src_ip 60.85.74.215 dst_ip 39.115.166.16 ip_proto udp src_port 8010 dst_port 47611 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10010 flower src_mac 02:17:4b:a3:04:86 dst_mac 02:d5:3c:76:14:70 vlan_id 1743 vlan_ethtype 0x0800 src_ip 64.244.3.162 dst_ip 118.27.15.78 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10011 flower src_mac 02:18:cc:6a:26:37 dst_mac 02:a7:38:21:14:34 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10012 flower src_mac 02:c4:10:70:56:b4 dst_mac 02:15:d8:ce:c7:21 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10013 flower src_mac 02:18:2c:de:7a:ce dst_mac 02:b9:08:53:ac:7c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10014 flower src_mac 02:81:38:55:aa:5e dst_mac 02:01:ec:ef:52:e3 vlan_id 468 vlan_ethtype 0x0800 src_ip 111.77.241.209 dst_ip 56.240.47.126 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10015 flower src_mac 02:3f:9a:0a:ea:e5 dst_mac 02:9c:76:c6:3b:90 vlan_id 3616 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10016 flower src_mac 02:44:86:fb:53:d0 dst_mac 02:2f:1f:91:02:e0 src_ip 82.211.223.161 dst_ip 107.181.113.54 ip_proto icmp code 237 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10017 flower src_mac 02:79:a1:be:f1:5d dst_mac 02:36:1d:fb:d7:6d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10018 flower src_mac 02:fe:f4:a9:1a:86 dst_mac 02:a4:73:60:15:18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10019 flower src_mac 02:d4:ed:fa:ab:ad dst_mac 02:81:d5:f4:c0:8d action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10020 flower src_mac 02:b0:80:2f:61:4d dst_mac 02:11:47:86:c1:c1 vlan_id 4041 vlan_ethtype ip src_ip 67.89.119.217 dst_ip 106.140.16.29 ip_proto udp src_port 9932 dst_port 26910 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10021 flower src_mac 02:b3:35:1e:eb:c1 dst_mac 02:d9:d2:6f:ce:fc vlan_id 2070 vlan_ethtype ip src_ip 80.253.128.188 dst_ip 67.21.108.26 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10022 flower src_mac 02:c2:89:8c:52:44 dst_mac 02:eb:43:8c:26:0e src_ip 89.215.43.14 dst_ip 94.107.167.238 ip_proto tcp src_port 52741 dst_port 16290 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10023 flower src_mac 02:8d:fe:5b:a2:33 dst_mac 02:7a:98:b5:e1:ec src_ip 114.250.5.37 dst_ip 74.202.232.238 ip_proto tcp src_port 57329 dst_port 53300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10024 flower src_mac 02:a9:23:48:49:7c dst_mac 02:20:3a:a4:ba:c3 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10025 flower src_mac 02:47:9a:db:f6:5f dst_mac 02:20:ed:4d:c1:c4 src_ip 113.107.67.248 dst_ip 48.246.70.113 ip_proto icmp code 59 type 11 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10026 flower src_mac 02:62:80:d3:bb:72 dst_mac 02:75:4f:01:67:80 vlan_id 1632 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10027 flower src_mac 02:f8:34:eb:a2:fc dst_mac 02:07:a2:a0:a4:91 vlan_id 3739 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10028 flower src_mac 02:41:25:bb:5e:ea dst_mac 02:7a:e9:cd:73:7f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10029 flower src_mac 02:eb:c8:9d:10:7c dst_mac 02:24:77:63:f0:f2 vlan_id 3431 vlan_ethtype ip src_ip 113.240.19.225 dst_ip 49.243.218.112 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10030 flower src_mac 02:93:b5:72:54:d7 dst_mac 02:6d:ce:88:92:7f vlan_id 3073 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10031 flower src_mac 02:dd:4b:2c:45:17 dst_mac 02:13:2f:e1:57:eb action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10032 flower src_mac 02:d3:2e:75:73:5b dst_mac 02:28:46:3a:5a:2f vlan_id 658 vlan_ethtype ip src_ip 23.134.40.214 dst_ip 20.70.191.247 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10033 flower src_mac 02:81:a2:8e:19:c8 dst_mac 02:3d:d3:4d:31:e9 src_ip 47.114.138.193 dst_ip 12.61.190.122 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10034 flower src_mac 02:8b:0d:95:e3:e1 dst_mac 02:ee:78:56:b0:09 vlan_id 1663 vlan_ethtype ip src_ip 66.225.246.180 dst_ip 52.46.136.153 ip_proto tcp src_port 25423 dst_port 29111 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10035 flower src_mac 02:d5:6f:79:e6:3f dst_mac 02:19:e6:63:4c:ca vlan_id 437 vlan_ethtype 0x0800 src_ip 105.214.159.55 dst_ip 25.164.202.41 ip_proto tcp src_port 38530 dst_port 33866 action trap && tc filter add dev swp1 ingress protocol ip pref 10036 flower src_mac 02:bb:ad:4d:a9:55 dst_mac 02:3e:a1:4d:43:3b src_ip 99.177.9.54 dst_ip 120.237.200.228 ip_proto udp src_port 55506 dst_port 8956 action drop && tc filter add dev swp1 ingress protocol ip pref 10037 flower src_mac 02:a4:51:31:a8:24 dst_mac 02:ca:8a:34:09:1b src_ip 60.211.182.240 dst_ip 108.193.68.201 ip_proto udp src_port 56152 dst_port 16492 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10038 flower src_mac 02:2a:e8:ed:5b:3c dst_mac 02:57:86:64:e7:ea action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10039 flower src_mac 02:27:c0:c6:b5:6d dst_mac 02:6a:a7:eb:bb:40 vlan_id 1209 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10040 flower src_mac 02:de:f0:64:37:3b dst_mac 02:55:58:1a:f7:f8 vlan_id 549 vlan_ethtype ip src_ip 75.174.62.3 dst_ip 23.7.238.144 ip_proto tcp src_port 57096 dst_port 17110 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10041 flower src_mac 02:0f:77:d6:a1:b9 dst_mac 02:ab:42:16:86:45 vlan_id 3385 vlan_ethtype ipv4 src_ip 32.7.86.29 dst_ip 81.141.31.225 ip_proto tcp src_port 59223 dst_port 33175 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10042 flower src_mac 02:f6:ff:09:7c:b0 dst_mac 02:a8:83:1f:66:52 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10043 flower src_mac 02:d2:34:6a:6d:ad dst_mac 02:c1:cc:0e:e5:6e src_ip 87.184.147.61 dst_ip 20.156.81.53 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10044 flower src_mac 02:2c:5a:e1:4c:d8 dst_mac 02:fa:aa:48:62:a2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10045 flower src_mac 02:46:87:4a:50:a1 dst_mac 02:99:0e:b8:7d:72 vlan_id 1735 vlan_ethtype ip src_ip 84.166.248.142 dst_ip 53.154.136.229 ip_proto udp src_port 58920 dst_port 44306 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10046 flower src_mac 02:6b:ee:19:e0:e9 dst_mac 02:ef:1e:ff:11:11 vlan_id 1935 vlan_ethtype 0x0800 src_ip 19.186.57.248 dst_ip 24.185.177.183 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10047 flower src_mac 02:be:88:52:78:36 dst_mac 02:0c:cc:08:17:b9 src_ip 85.214.207.219 dst_ip 39.98.20.216 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10048 flower src_mac 02:29:58:a1:d4:6f dst_mac 02:63:01:d2:07:ac src_ip 123.136.62.121 dst_ip 66.57.169.209 ip_proto tcp src_port 62925 dst_port 2523 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10049 flower src_mac 02:44:a1:de:9f:bc dst_mac 02:49:be:5a:b3:64 src_ip 102.87.89.43 dst_ip 99.198.191.59 ip_proto icmp code 55 type 13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10050 flower src_mac 02:af:43:e0:35:7d dst_mac 02:44:5c:c7:f8:78 vlan_id 1458 vlan_ethtype 0x0800 src_ip 75.149.166.236 dst_ip 82.179.239.232 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10051 flower src_mac 02:d2:58:6a:77:bc dst_mac 02:ef:b2:4b:a5:ac vlan_id 2034 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10052 flower src_mac 02:e6:89:31:f8:cb dst_mac 02:23:5f:23:fe:52 vlan_id 3308 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10053 flower src_mac 02:b1:86:2f:09:2f dst_mac 02:6b:c6:cd:5d:e8 vlan_id 2972 vlan_ethtype 0x0800 src_ip 41.84.82.110 dst_ip 75.251.174.94 ip_proto tcp src_port 45531 dst_port 1070 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10054 flower src_mac 02:00:de:35:87:e1 dst_mac 02:41:08:71:38:44 vlan_id 3836 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10055 flower src_mac 02:64:40:dc:94:2a dst_mac 02:f1:26:2d:80:6e action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:57:fc:46:d4:f8 dst_mac 02:3d:9f:c5:aa:c0 vlan_id 4008 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:66:f5:45:b8:28 dst_mac 02:e2:f4:e7:bf:68 vlan_id 1878 vlan_ethtype ipv4 src_ip 32.117.239.39 dst_ip 126.133.87.135 ip_proto tcp src_port 39687 dst_port 63839 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10058 flower src_mac 02:1c:8c:e6:d5:f9 dst_mac 02:0f:bf:e0:77:7b vlan_id 2704 vlan_ethtype ipv4 src_ip 76.47.152.84 dst_ip 56.82.80.52 ip_proto udp src_port 62015 dst_port 34001 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10059 flower src_mac 02:a3:e9:5c:88:d4 dst_mac 02:7b:62:01:07:07 vlan_id 332 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10060 flower src_mac 02:3a:61:f5:0f:47 dst_mac 02:5e:3a:c2:fe:2c vlan_id 708 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10061 flower src_mac 02:5b:cd:89:75:6a dst_mac 02:94:9e:4e:87:4a action drop && tc filter add dev swp1 ingress protocol ip pref 10062 flower src_mac 02:2d:af:c8:d8:51 dst_mac 02:6d:a7:fc:1e:d7 src_ip 102.1.157.90 dst_ip 49.172.182.121 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10063 flower src_mac 02:32:f1:7f:6a:74 dst_mac 02:fb:4d:15:d3:c1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10064 flower src_mac 02:47:bc:94:af:a5 dst_mac 02:91:d3:ed:62:a5 vlan_id 1483 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10065 flower src_mac 02:a4:4f:f0:da:61 dst_mac 02:d0:a6:03:57:bb vlan_id 1708 vlan_ethtype 0x0800 src_ip 116.248.27.239 dst_ip 107.57.117.246 ip_proto udp src_port 14274 dst_port 1454 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10066 flower src_mac 02:ba:ba:64:e4:cf dst_mac 02:9a:71:e7:ea:be action pass && tc filter add dev swp1 ingress protocol ip pref 10067 flower src_mac 02:de:c7:bd:1a:e7 dst_mac 02:76:28:78:1c:11 src_ip 117.179.107.51 dst_ip 114.29.115.24 ip_proto tcp src_port 64237 dst_port 35597 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10068 flower src_mac 02:ee:cf:2d:a4:8c dst_mac 02:1d:6a:f6:1f:47 vlan_id 279 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10069 flower src_mac 02:87:fd:e0:a4:06 dst_mac 02:87:5f:9e:50:bb src_ip 20.52.135.195 dst_ip 49.239.83.117 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10070 flower src_mac 02:ae:4c:98:4d:4d dst_mac 02:f3:46:64:ff:55 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10071 flower src_mac 02:c9:24:45:f6:c6 dst_mac 02:80:d9:b3:55:e7 src_ip 72.130.68.131 dst_ip 112.84.160.45 ip_proto icmp code 178 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:c6:01:0b:e7:c6 dst_mac 02:09:20:ae:09:1a vlan_id 341 vlan_ethtype ip src_ip 108.95.47.242 dst_ip 48.236.108.179 ip_proto tcp src_port 43499 dst_port 23575 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10073 flower src_mac 02:15:28:8e:4d:18 dst_mac 02:18:81:d4:4d:f5 src_ip 74.193.68.204 dst_ip 20.68.240.200 ip_proto tcp src_port 39221 dst_port 25264 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10074 flower src_mac 02:ff:21:f2:60:13 dst_mac 02:bf:f4:40:ea:7b vlan_id 903 vlan_ethtype ip src_ip 31.225.101.138 dst_ip 42.59.93.113 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10075 flower src_mac 02:64:40:7a:2e:fa dst_mac 02:da:19:68:5f:67 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10076 flower src_mac 02:74:c7:80:26:58 dst_mac 02:e2:8d:c3:4c:d1 vlan_id 3245 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10077 flower src_mac 02:2d:cd:3d:64:e3 dst_mac 02:a7:93:6d:c3:ad vlan_id 919 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:5b:15:4f:61:0e dst_mac 02:7f:ec:4e:78:02 vlan_id 1477 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10079 flower src_mac 02:d0:95:cd:4a:ca dst_mac 02:36:dd:30:de:d3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:82:46:8c:de:1c dst_mac 02:15:73:d0:e2:da vlan_id 2401 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10081 flower src_mac 02:62:94:f1:8f:f4 dst_mac 02:b1:53:2c:c3:b3 src_ip 67.133.210.157 dst_ip 40.249.76.194 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10082 flower src_mac 02:34:4b:11:3f:94 dst_mac 02:5c:40:04:36:de src_ip 74.17.222.119 dst_ip 117.248.189.23 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10083 flower src_mac 02:bc:55:10:71:72 dst_mac 02:ed:ae:45:9c:c6 vlan_id 2656 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10084 flower src_mac 02:8c:5c:5e:c7:f9 dst_mac 02:b8:c5:f6:97:4f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10085 flower src_mac 02:46:bd:64:6b:d5 dst_mac 02:29:b1:4e:b9:45 vlan_id 2891 vlan_ethtype ip src_ip 23.170.198.174 dst_ip 45.23.121.126 ip_proto tcp src_port 30205 dst_port 43140 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10086 flower src_mac 02:ef:84:b2:bd:79 dst_mac 02:62:83:13:73:c3 vlan_id 805 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10087 flower src_mac 02:3b:1a:14:c1:af dst_mac 02:a5:fe:62:81:9d src_ip 113.35.136.66 dst_ip 35.99.47.30 ip_proto udp src_port 58492 dst_port 30738 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10088 flower src_mac 02:33:0f:54:7d:c3 dst_mac 02:68:f4:df:46:ec vlan_id 3718 vlan_ethtype ip src_ip 66.253.220.169 dst_ip 84.208.219.236 ip_proto udp src_port 36783 dst_port 1496 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10089 flower src_mac 02:1e:93:3b:eb:ea dst_mac 02:21:df:e3:4f:a9 vlan_id 3999 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10090 flower src_mac 02:76:f1:7e:98:8e dst_mac 02:c6:59:10:9b:17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10091 flower src_mac 02:ca:af:a8:42:f8 dst_mac 02:12:eb:df:8f:c7 vlan_id 1141 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10092 flower src_mac 02:c7:8d:53:05:8f dst_mac 02:1d:1c:84:0b:9b vlan_id 1832 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10093 flower src_mac 02:a7:4d:5b:e7:a2 dst_mac 02:d5:e7:75:20:a5 vlan_id 360 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10094 flower src_mac 02:c1:d3:55:83:9e dst_mac 02:73:23:bd:52:7f action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10095 flower src_mac 02:ab:7e:d0:34:21 dst_mac 02:dc:c2:bf:f1:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10096 flower src_mac 02:58:25:85:4f:23 dst_mac 02:9b:b7:74:46:7c vlan_id 3602 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10097 flower src_mac 02:2d:07:4e:36:9a dst_mac 02:82:0c:e2:fc:a1 vlan_id 1839 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10098 flower src_mac 02:96:00:0a:ef:fe dst_mac 02:a2:9c:6e:10:75 vlan_id 753 vlan_ethtype ipv4 src_ip 42.232.160.197 dst_ip 96.200.68.48 ip_proto tcp src_port 65437 dst_port 29703 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10099 flower src_mac 02:9b:c7:cc:6f:e3 dst_mac 02:b8:dc:8e:a1:22 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10100 flower src_mac 02:e6:02:e0:2b:60 dst_mac 02:2a:3b:c3:ad:b2 vlan_id 3054 vlan_ethtype 0x0800 src_ip 86.144.4.66 dst_ip 31.241.93.130 ip_proto tcp src_port 9161 dst_port 23008 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10101 flower src_mac 02:65:cc:d3:7d:f3 dst_mac 02:51:f3:26:6e:37 vlan_id 3014 vlan_ethtype ip src_ip 21.169.117.165 dst_ip 55.254.140.164 ip_proto udp src_port 50330 dst_port 30475 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10102 flower src_mac 02:ef:6f:a6:54:05 dst_mac 02:8b:50:bb:39:6b vlan_id 567 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10103 flower src_mac 02:9f:bf:de:3a:2c dst_mac 02:fe:b0:1d:a0:db src_ip 64.185.157.216 dst_ip 79.239.84.223 action trap && tc filter add dev swp1 ingress protocol ip pref 10104 flower src_mac 02:56:60:7f:b5:16 dst_mac 02:f0:85:4c:ee:c0 src_ip 24.151.228.113 dst_ip 72.112.28.185 ip_proto tcp src_port 8357 dst_port 44085 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10105 flower src_mac 02:c1:b7:b8:2c:eb dst_mac 02:14:f9:95:82:01 vlan_id 1619 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10106 flower src_mac 02:3c:37:12:f9:45 dst_mac 02:e1:12:01:c9:d1 vlan_id 338 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:5a:6c:8e:21:15 dst_mac 02:77:4b:3c:74:19 vlan_id 3898 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10108 flower src_mac 02:84:1b:f1:ac:ff dst_mac 02:cb:77:5c:fc:61 action trap && tc filter add dev swp1 ingress protocol ip pref 10109 flower src_mac 02:c0:02:8d:ff:ca dst_mac 02:f8:4c:69:53:a7 src_ip 126.193.1.35 dst_ip 73.230.141.194 ip_proto icmp code 136 type 15 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10110 flower src_mac 02:8c:59:eb:e6:11 dst_mac 02:58:85:03:7d:4e vlan_id 3930 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10111 flower src_mac 02:9e:4a:9a:93:1d dst_mac 02:85:3b:ff:47:ff vlan_id 3601 vlan_ethtype 0x0800 src_ip 12.175.242.38 dst_ip 32.148.112.81 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10112 flower src_mac 02:70:26:6d:51:73 dst_mac 02:ab:2c:78:69:c8 vlan_id 4022 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10113 flower src_mac 02:2f:4e:1c:61:c0 dst_mac 02:d9:77:db:5d:b6 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10114 flower src_mac 02:e1:5c:5e:0f:7c dst_mac 02:89:aa:17:e4:b6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10115 flower src_mac 02:65:7b:0e:22:f3 dst_mac 02:78:db:41:d1:a9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10116 flower src_mac 02:b7:16:bc:34:5b dst_mac 02:0f:da:66:21:db vlan_id 1366 vlan_ethtype 0x0800 src_ip 84.59.149.63 dst_ip 117.224.85.70 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10117 flower src_mac 02:a0:d7:0d:7f:19 dst_mac 02:3a:13:18:c2:a9 vlan_id 2762 vlan_ethtype ipv4 src_ip 58.194.105.14 dst_ip 100.143.62.200 action trap && tc filter add dev swp1 ingress protocol ip pref 10118 flower src_mac 02:26:d6:b5:d2:2b dst_mac 02:86:25:99:35:f3 src_ip 103.37.127.169 dst_ip 105.62.69.129 ip_proto tcp src_port 26237 dst_port 40147 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10119 flower src_mac 02:ed:9b:a0:62:ec dst_mac 02:fa:32:22:c7:05 vlan_id 2482 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10120 flower src_mac 02:3d:35:e9:dc:59 dst_mac 02:e6:88:6c:01:b0 vlan_id 1571 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10121 flower src_mac 02:aa:cb:65:37:c7 dst_mac 02:b1:90:08:03:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10122 flower src_mac 02:7b:94:2c:79:f1 dst_mac 02:14:60:61:f8:9a vlan_id 2733 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10123 flower src_mac 02:9e:e8:d2:27:27 dst_mac 02:3c:87:47:a2:54 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10124 flower src_mac 02:20:eb:49:00:1d dst_mac 02:64:14:9b:cc:23 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10125 flower src_mac 02:d6:1d:48:5a:49 dst_mac 02:34:02:4c:a8:2d src_ip 92.82.126.39 dst_ip 103.163.174.85 ip_proto tcp src_port 8231 dst_port 30652 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10126 flower src_mac 02:8a:e0:33:29:1f dst_mac 02:a1:98:ec:c4:fd vlan_id 1182 vlan_ethtype ip src_ip 44.155.126.169 dst_ip 12.142.102.60 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10127 flower src_mac 02:af:db:d7:81:61 dst_mac 02:7b:6a:43:97:31 src_ip 75.159.150.12 dst_ip 101.0.173.79 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10128 flower src_mac 02:80:98:98:e4:f8 dst_mac 02:74:91:21:19:fe vlan_id 1134 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10129 flower src_mac 02:3c:76:59:29:74 dst_mac 02:d5:a7:bb:e0:4e vlan_id 1345 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10130 flower src_mac 02:85:24:6e:2f:6c dst_mac 02:0c:1a:fa:74:aa src_ip 96.50.135.75 dst_ip 26.240.228.205 ip_proto icmp code 44 type 15 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10131 flower src_mac 02:1e:5b:cc:31:51 dst_mac 02:0c:cd:f4:91:6e src_ip 40.219.47.234 dst_ip 107.179.127.228 ip_proto tcp src_port 54988 dst_port 49199 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10132 flower src_mac 02:1b:4e:3c:09:15 dst_mac 02:c3:59:d6:c7:cf vlan_id 176 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10133 flower src_mac 02:c0:c4:ed:eb:2b dst_mac 02:87:63:5e:66:78 vlan_id 4003 vlan_ethtype ip src_ip 74.5.183.89 dst_ip 69.9.49.237 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10134 flower src_mac 02:ef:cd:79:89:a4 dst_mac 02:75:35:ad:00:3b vlan_id 3632 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10135 flower src_mac 02:7e:52:61:33:63 dst_mac 02:ac:57:e5:36:d7 vlan_id 3236 vlan_ethtype ip src_ip 69.191.71.103 dst_ip 44.10.152.156 ip_proto udp src_port 8231 dst_port 6181 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10136 flower src_mac 02:b7:40:cb:4e:58 dst_mac 02:ba:7c:dd:ae:41 vlan_id 137 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10137 flower src_mac 02:2b:a5:38:74:47 dst_mac 02:4f:7f:bb:b7:f9 vlan_id 973 vlan_ethtype ip src_ip 115.199.170.200 dst_ip 66.217.117.112 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10138 flower src_mac 02:84:a2:48:8f:6f dst_mac 02:1c:50:e9:c7:37 vlan_id 1234 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10139 flower src_mac 02:a0:6c:95:8c:7d dst_mac 02:76:a5:55:5b:78 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10140 flower src_mac 02:21:9c:52:74:3a dst_mac 02:ea:43:7f:cd:30 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10141 flower src_mac 02:a4:79:e2:e8:01 dst_mac 02:a4:fc:01:9b:83 vlan_id 3035 vlan_ethtype ipv4 src_ip 24.172.107.85 dst_ip 80.60.18.107 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10142 flower src_mac 02:79:fb:a6:ac:59 dst_mac 02:ff:8a:a3:df:a0 src_ip 95.69.77.157 dst_ip 107.11.106.120 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10143 flower src_mac 02:48:05:4c:c4:32 dst_mac 02:7e:b5:9f:22:1e vlan_id 3659 vlan_ethtype ip src_ip 98.248.136.167 dst_ip 104.152.144.240 ip_proto udp src_port 32567 dst_port 12388 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10144 flower src_mac 02:86:aa:2f:7e:0d dst_mac 02:36:f0:b0:c8:58 vlan_id 3415 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10145 flower src_mac 02:cd:c6:9b:23:63 dst_mac 02:38:ef:2f:e2:56 vlan_id 3639 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10146 flower src_mac 02:16:f2:21:37:5f dst_mac 02:be:98:a4:aa:bf action pass && tc filter add dev swp1 ingress protocol ip pref 10147 flower src_mac 02:7a:1c:71:b2:a7 dst_mac 02:12:5b:60:88:a0 src_ip 98.176.227.141 dst_ip 59.249.37.146 ip_proto icmp code 210 type 3 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10148 flower src_mac 02:c7:e5:de:88:ce dst_mac 02:44:17:65:f4:4b src_ip 35.156.223.140 dst_ip 55.119.106.244 action pass && tc filter add dev swp1 ingress protocol ip pref 10149 flower src_mac 02:72:3c:ab:9c:74 dst_mac 02:04:f7:f9:8d:a2 src_ip 54.12.13.48 dst_ip 71.250.43.76 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10150 flower src_mac 02:4c:54:a6:56:7e dst_mac 02:08:27:98:05:6f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10151 flower src_mac 02:3d:ef:5c:ca:0b dst_mac 02:17:fe:c3:53:d9 vlan_id 2754 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10152 flower src_mac 02:03:60:b4:be:00 dst_mac 02:a4:64:04:32:12 vlan_id 489 vlan_ethtype ipv4 src_ip 79.180.126.57 dst_ip 22.108.247.227 action trap && tc filter add dev swp1 ingress protocol ip pref 10153 flower src_mac 02:24:11:26:d1:4c dst_mac 02:f9:e0:14:0d:90 src_ip 78.120.84.145 dst_ip 110.20.77.224 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10154 flower src_mac 02:99:b6:ba:52:14 dst_mac 02:f4:f8:8e:b7:40 vlan_id 2226 vlan_ethtype 0x0800 src_ip 67.43.226.197 dst_ip 91.43.96.42 ip_proto tcp src_port 22770 dst_port 24178 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10155 flower src_mac 02:a0:78:64:15:70 dst_mac 02:4b:c0:6c:db:96 vlan_id 601 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10156 flower src_mac 02:51:58:cb:56:c0 dst_mac 02:77:8a:19:e7:2e action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10157 flower src_mac 02:4d:b1:37:9e:f7 dst_mac 02:d1:c8:35:50:ad src_ip 32.217.167.77 dst_ip 90.18.86.241 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10158 flower src_mac 02:43:15:f6:c2:40 dst_mac 02:80:f2:d4:ce:90 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10159 flower src_mac 02:df:72:3c:85:ab dst_mac 02:f3:28:b8:50:b0 action trap && tc filter add dev swp1 ingress protocol ip pref 10160 flower src_mac 02:df:ac:e9:f9:a7 dst_mac 02:58:eb:76:11:96 src_ip 75.27.83.113 dst_ip 124.97.83.69 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10161 flower src_mac 02:79:e7:2a:20:79 dst_mac 02:32:d4:a1:e2:6c action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10162 flower src_mac 02:f3:65:a7:6a:02 dst_mac 02:fa:f6:0c:ba:a1 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10163 flower src_mac 02:01:78:5d:91:e2 dst_mac 02:e2:07:78:40:cb vlan_id 554 vlan_ethtype ip src_ip 115.181.92.159 dst_ip 124.212.32.187 ip_proto udp src_port 22241 dst_port 47980 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10164 flower src_mac 02:22:e7:e8:b0:3d dst_mac 02:87:17:0a:2a:f9 vlan_id 3395 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10165 flower src_mac 02:45:08:94:bf:b3 dst_mac 02:05:64:a9:1a:66 src_ip 34.97.225.231 dst_ip 48.146.228.40 ip_proto icmp code 249 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10166 flower src_mac 02:0a:27:69:31:26 dst_mac 02:3b:59:8b:1d:bd vlan_id 4086 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10167 flower src_mac 02:4d:e7:05:68:bb dst_mac 02:68:0e:cc:46:d9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10168 flower src_mac 02:ce:90:6f:1a:7d dst_mac 02:c8:28:ca:36:3f vlan_id 3722 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10169 flower src_mac 02:2d:f6:6f:9d:0c dst_mac 02:25:d0:4d:1e:17 vlan_id 2834 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10170 flower src_mac 02:57:00:42:c7:a1 dst_mac 02:c2:a0:51:f6:18 vlan_id 3208 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10171 flower src_mac 02:33:fd:f9:9e:5c dst_mac 02:8b:d9:d1:bb:4c vlan_id 367 vlan_ethtype ipv4 src_ip 59.143.126.46 dst_ip 79.136.48.8 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10172 flower src_mac 02:71:a6:05:0c:9d dst_mac 02:fd:dc:0f:f3:d8 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10173 flower src_mac 02:02:2f:cb:66:21 dst_mac 02:7e:1c:7b:a5:4c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10174 flower src_mac 02:39:ba:ae:88:72 dst_mac 02:92:b9:c0:8c:dc vlan_id 1516 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:3f:59:3f:6d:4f dst_mac 02:bb:86:58:53:7a vlan_id 1019 vlan_ethtype 0x0800 src_ip 125.153.48.86 dst_ip 72.128.32.202 ip_proto tcp src_port 4067 dst_port 48731 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10176 flower src_mac 02:22:2c:28:7a:a4 dst_mac 02:67:7f:f6:a6:4a src_ip 120.188.180.146 dst_ip 72.240.207.56 ip_proto icmp code 70 type 17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10177 flower src_mac 02:61:77:1f:89:c6 dst_mac 02:cb:e2:58:e3:3a vlan_id 1547 vlan_ethtype ipv4 src_ip 32.177.97.217 dst_ip 38.59.166.139 ip_proto udp src_port 2318 dst_port 51215 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10178 flower src_mac 02:d0:f6:93:98:14 dst_mac 02:47:66:6d:69:70 vlan_id 2134 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10179 flower src_mac 02:82:02:a5:81:9e dst_mac 02:77:84:3b:2f:b9 src_ip 68.137.80.8 dst_ip 24.34.118.174 ip_proto udp src_port 15399 dst_port 41493 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10180 flower src_mac 02:de:47:45:bc:65 dst_mac 02:5d:34:54:73:8d src_ip 74.251.11.209 dst_ip 121.150.199.131 ip_proto icmp code 25 type 14 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10181 flower src_mac 02:67:1e:4c:7b:e0 dst_mac 02:2b:41:16:3f:81 src_ip 21.208.154.212 dst_ip 125.106.204.105 ip_proto udp src_port 33096 dst_port 58020 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10182 flower src_mac 02:7c:4e:11:51:4d dst_mac 02:22:6d:36:f0:6b vlan_id 2387 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10183 flower src_mac 02:76:41:a4:df:68 dst_mac 02:9e:08:e9:6a:e3 src_ip 85.213.128.184 dst_ip 47.135.76.191 ip_proto icmp code 66 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10184 flower src_mac 02:bb:d9:dc:c2:c6 dst_mac 02:f6:0b:43:73:84 vlan_id 2547 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10185 flower src_mac 02:11:de:ee:3d:b4 dst_mac 02:c1:cf:90:d6:d6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10186 flower src_mac 02:e9:04:53:04:27 dst_mac 02:dc:75:e9:97:1a vlan_id 3369 vlan_ethtype ipv4 src_ip 84.204.219.166 dst_ip 77.139.106.230 ip_proto tcp src_port 39842 dst_port 3254 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10187 flower src_mac 02:fa:be:8a:91:78 dst_mac 02:ee:8b:84:43:9a vlan_id 3871 vlan_ethtype ip src_ip 72.243.70.45 dst_ip 111.42.100.96 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10188 flower src_mac 02:66:80:55:6b:9f dst_mac 02:a6:f8:9f:e9:72 vlan_id 982 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10189 flower src_mac 02:23:46:be:d3:31 dst_mac 02:f2:05:c3:42:9f action drop && tc filter add dev swp1 ingress protocol ip pref 10190 flower src_mac 02:2e:6a:b7:87:0c dst_mac 02:7f:cc:13:51:bb src_ip 105.225.138.6 dst_ip 66.148.62.151 ip_proto icmp code 69 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10191 flower src_mac 02:ac:4e:6d:33:fd dst_mac 02:0a:83:19:b5:8f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10192 flower src_mac 02:bc:1a:a5:47:73 dst_mac 02:3e:fb:6a:04:17 vlan_id 3195 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10193 flower src_mac 02:77:98:d0:1d:b4 dst_mac 02:3f:89:16:99:ba action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10194 flower src_mac 02:b0:4f:32:dd:15 dst_mac 02:1a:e7:ab:eb:fd vlan_id 1959 vlan_ethtype ipv4 src_ip 58.200.126.113 dst_ip 67.135.137.191 ip_proto tcp src_port 62261 dst_port 47048 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10195 flower src_mac 02:32:7d:e4:1e:0b dst_mac 02:72:f2:91:d5:aa action drop && tc filter add dev swp1 ingress protocol ip pref 10196 flower src_mac 02:24:f5:8e:8a:3e dst_mac 02:76:b5:33:75:09 src_ip 53.139.211.60 dst_ip 116.98.125.47 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10197 flower src_mac 02:cb:1e:17:4c:45 dst_mac 02:e4:de:8a:1c:f7 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10198 flower src_mac 02:b0:81:dc:ae:12 dst_mac 02:01:68:43:68:a5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10199 flower src_mac 02:c4:71:f6:4c:fa dst_mac 02:80:32:b9:49:56 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10200 flower src_mac 02:7f:29:62:c1:52 dst_mac 02:51:37:11:a7:e4 vlan_id 1408 vlan_ethtype 0x0800 src_ip 37.131.242.45 dst_ip 90.234.44.10 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10201 flower src_mac 02:0c:35:2a:63:8d dst_mac 02:9d:1f:b7:84:72 src_ip 46.93.72.134 dst_ip 35.247.142.76 ip_proto icmp code 158 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10202 flower src_mac 02:d6:0d:1d:c1:97 dst_mac 02:a1:a6:5d:4e:2c vlan_id 251 vlan_ethtype ip src_ip 52.253.50.192 dst_ip 36.85.242.144 ip_proto udp src_port 44982 dst_port 15044 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10203 flower src_mac 02:7c:08:df:2e:42 dst_mac 02:32:84:f0:b9:57 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10204 flower src_mac 02:e1:a1:4e:8b:84 dst_mac 02:aa:39:04:f4:68 vlan_id 3728 vlan_ethtype 0x0800 src_ip 103.12.133.214 dst_ip 105.194.147.34 ip_proto udp src_port 32521 dst_port 4435 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10205 flower src_mac 02:8a:10:c6:e4:2f dst_mac 02:5d:72:02:55:28 src_ip 35.42.33.83 dst_ip 27.106.8.152 ip_proto icmp code 244 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10206 flower src_mac 02:e1:82:e1:9d:d6 dst_mac 02:43:fc:0a:3b:49 vlan_id 4010 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10207 flower src_mac 02:1f:95:66:a0:a1 dst_mac 02:0b:27:86:45:34 src_ip 73.248.156.229 dst_ip 110.246.175.161 ip_proto icmp code 137 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10208 flower src_mac 02:58:7d:21:12:a1 dst_mac 02:1a:eb:42:2a:58 vlan_id 2238 vlan_ethtype ipv4 src_ip 76.183.80.10 dst_ip 124.202.248.101 ip_proto udp src_port 26693 dst_port 53150 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10209 flower src_mac 02:cc:1b:fc:ff:43 dst_mac 02:54:89:0c:33:46 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10210 flower src_mac 02:4d:00:63:6f:45 dst_mac 02:1a:e8:6a:01:0e src_ip 64.103.236.165 dst_ip 70.164.131.159 ip_proto udp src_port 65025 dst_port 2447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10211 flower src_mac 02:b8:cb:0f:da:7e dst_mac 02:39:37:54:e3:76 vlan_id 1133 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10212 flower src_mac 02:fe:79:dc:3d:b9 dst_mac 02:8c:68:c0:c6:0e action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10213 flower src_mac 02:77:15:49:ec:0e dst_mac 02:86:cf:b8:68:29 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10214 flower src_mac 02:eb:0b:75:50:49 dst_mac 02:23:1e:33:9f:e4 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10215 flower src_mac 02:9e:f3:90:eb:e8 dst_mac 02:66:c9:2c:b0:6c src_ip 42.193.65.223 dst_ip 91.110.246.200 ip_proto icmp code 224 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10216 flower src_mac 02:38:ed:ff:83:16 dst_mac 02:5a:0e:4c:38:f9 vlan_id 663 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10217 flower src_mac 02:28:62:1c:28:37 dst_mac 02:70:80:dd:b0:c0 vlan_id 2499 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10218 flower src_mac 02:7f:ea:17:ae:f8 dst_mac 02:98:f9:2a:79:a9 vlan_id 3292 vlan_ethtype ipv4 src_ip 91.145.67.123 dst_ip 68.162.46.124 ip_proto tcp src_port 60118 dst_port 39681 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10219 flower src_mac 02:17:d3:c6:14:77 dst_mac 02:54:1a:29:e6:90 vlan_id 462 vlan_ethtype 0x0800 src_ip 96.48.112.45 dst_ip 88.54.236.40 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10220 flower src_mac 02:60:9a:11:fc:a1 dst_mac 02:0a:17:2b:c6:04 src_ip 34.245.8.222 dst_ip 22.183.97.220 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10221 flower src_mac 02:02:e8:63:97:a7 dst_mac 02:f6:7e:b7:88:87 vlan_id 2883 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10222 flower src_mac 02:b4:06:2d:39:ea dst_mac 02:3f:2e:b3:86:72 vlan_id 3525 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10223 flower src_mac 02:e7:7d:26:32:a3 dst_mac 02:e1:f3:31:e1:38 src_ip 77.56.250.33 dst_ip 92.21.44.50 ip_proto icmp code 138 type 17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10224 flower src_mac 02:63:47:04:2b:f2 dst_mac 02:a9:20:86:6f:ef vlan_id 2557 vlan_ethtype ipv4 src_ip 28.80.196.215 dst_ip 27.226.149.144 ip_proto tcp src_port 9744 dst_port 56164 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10225 flower src_mac 02:1a:4a:fa:75:ad dst_mac 02:78:d8:5d:c9:85 vlan_id 967 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10226 flower src_mac 02:60:54:08:86:61 dst_mac 02:1b:72:2c:1a:a2 vlan_id 295 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10227 flower src_mac 02:e5:58:64:92:ac dst_mac 02:a7:fe:e5:bb:d9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10228 flower src_mac 02:f0:0e:b4:b1:23 dst_mac 02:44:0f:6c:64:99 vlan_id 601 vlan_ethtype 0x0800 src_ip 32.199.224.62 dst_ip 74.110.85.88 ip_proto tcp src_port 1113 dst_port 49489 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10229 flower src_mac 02:4d:fe:fb:f7:79 dst_mac 02:c0:07:5a:94:7f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10230 flower src_mac 02:b6:85:3d:f4:64 dst_mac 02:ec:3f:a2:2f:89 vlan_id 2690 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10231 flower src_mac 02:2b:cb:62:4b:6e dst_mac 02:e4:20:75:af:23 src_ip 32.220.23.10 dst_ip 115.234.237.71 ip_proto icmp code 75 type 11 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10232 flower src_mac 02:d3:ae:96:08:34 dst_mac 02:76:ce:1b:89:72 src_ip 35.135.121.85 dst_ip 115.206.214.13 ip_proto icmp code 55 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10233 flower src_mac 02:b3:d3:7c:4b:24 dst_mac 02:6f:97:a1:b7:2f vlan_id 970 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10234 flower src_mac 02:84:d1:7e:c2:2a dst_mac 02:9c:e6:4b:5c:63 src_ip 110.127.1.133 dst_ip 74.182.58.53 ip_proto udp src_port 58126 dst_port 60521 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10235 flower src_mac 02:ab:08:51:a5:5b dst_mac 02:15:1c:04:5b:3d action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10236 flower src_mac 02:ed:2e:92:db:1f dst_mac 02:8b:ca:b3:c3:95 src_ip 99.247.123.131 dst_ip 107.111.97.151 ip_proto tcp src_port 28652 dst_port 48079 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10237 flower src_mac 02:1a:07:1d:46:80 dst_mac 02:f1:71:d9:97:18 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10238 flower src_mac 02:7b:64:c9:09:03 dst_mac 02:34:1a:38:7b:42 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10239 flower src_mac 02:92:2f:cf:6e:43 dst_mac 02:71:f3:a4:0f:72 vlan_id 1826 vlan_ethtype ip src_ip 24.68.1.108 dst_ip 56.45.197.151 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10240 flower src_mac 02:f3:06:03:64:63 dst_mac 02:47:1f:72:fb:52 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10241 flower src_mac 02:de:be:a1:cd:c9 dst_mac 02:0a:2c:ed:e7:80 vlan_id 2919 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10242 flower src_mac 02:51:5c:a2:f2:48 dst_mac 02:b8:bd:e4:af:28 vlan_id 3385 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10243 flower src_mac 02:87:f3:42:83:20 dst_mac 02:76:88:8e:16:99 vlan_id 2620 vlan_ethtype 0x0800 src_ip 23.161.22.58 dst_ip 83.101.254.5 ip_proto udp src_port 26936 dst_port 37966 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10244 flower src_mac 02:8f:83:03:c5:9f dst_mac 02:04:60:7c:67:63 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10245 flower src_mac 02:f2:2b:fd:f9:1c dst_mac 02:db:cf:e4:46:70 vlan_id 59 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10246 flower src_mac 02:3c:66:88:2b:7f dst_mac 02:c6:12:8b:6e:da vlan_id 294 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10247 flower src_mac 02:9f:d1:f8:7a:e0 dst_mac 02:45:0b:4b:2b:96 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10248 flower src_mac 02:af:c0:41:22:88 dst_mac 02:2d:37:79:a7:d7 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10249 flower src_mac 02:90:c3:b8:fa:35 dst_mac 02:1c:7e:f1:3a:ee vlan_id 1126 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10250 flower src_mac 02:b7:54:71:3b:a6 dst_mac 02:cf:d7:bf:ba:40 vlan_id 2957 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10251 flower src_mac 02:b0:0c:17:4c:b7 dst_mac 02:82:3b:93:e8:da src_ip 94.100.6.9 dst_ip 122.196.159.28 ip_proto tcp src_port 35137 dst_port 49930 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10252 flower src_mac 02:36:bb:b5:73:fa dst_mac 02:1d:b8:b6:e4:df action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10253 flower src_mac 02:3a:0a:95:f4:38 dst_mac 02:3f:5c:73:db:45 src_ip 61.73.143.189 dst_ip 50.198.100.147 ip_proto tcp src_port 15173 dst_port 15937 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10254 flower src_mac 02:f5:e6:07:9e:5a dst_mac 02:70:bc:83:29:ee vlan_id 4090 vlan_ethtype ipv4 src_ip 125.145.105.154 dst_ip 11.36.76.116 ip_proto tcp src_port 46947 dst_port 28526 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:b1:53:23:ac:c3 dst_mac 02:fc:77:b7:33:6d vlan_id 2007 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10256 flower src_mac 02:42:62:f1:34:d2 dst_mac 02:db:e5:f8:d9:5b vlan_id 1397 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10257 flower src_mac 02:a8:09:9a:77:e5 dst_mac 02:6b:15:2a:68:24 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10258 flower src_mac 02:4f:74:9d:36:8b dst_mac 02:87:51:e4:ca:2d src_ip 108.170.222.35 dst_ip 102.110.5.54 ip_proto udp src_port 17696 dst_port 13662 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10259 flower src_mac 02:a2:50:ff:a0:b5 dst_mac 02:a2:99:df:a9:73 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10260 flower src_mac 02:01:93:0b:ff:1c dst_mac 02:05:0c:0d:d6:14 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10261 flower src_mac 02:07:47:64:1a:a6 dst_mac 02:e4:c0:d7:d6:22 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10262 flower src_mac 02:02:d5:35:d1:df dst_mac 02:2b:5d:57:95:3a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10263 flower src_mac 02:d3:09:69:93:b9 dst_mac 02:ed:cf:ea:75:ff vlan_id 3624 vlan_ethtype ip src_ip 103.3.27.50 dst_ip 71.32.124.241 ip_proto tcp src_port 45444 dst_port 30564 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10264 flower src_mac 02:1a:1e:75:c6:de dst_mac 02:0f:51:50:b5:88 vlan_id 3847 vlan_ethtype ip src_ip 26.31.212.124 dst_ip 41.49.134.44 ip_proto udp src_port 17570 dst_port 11176 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10265 flower src_mac 02:dc:5c:db:ed:e0 dst_mac 02:2c:2d:0d:92:dc action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10266 flower src_mac 02:57:64:d1:aa:75 dst_mac 02:af:ae:53:ae:a8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10267 flower src_mac 02:d5:06:ee:a9:ad dst_mac 02:0f:22:24:e0:e1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10268 flower src_mac 02:bc:f3:02:79:11 dst_mac 02:94:f7:4c:05:21 vlan_id 3794 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10269 flower src_mac 02:4c:fd:97:f5:e1 dst_mac 02:75:59:2a:c5:7f vlan_id 3238 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10270 flower src_mac 02:68:b7:22:43:73 dst_mac 02:84:5d:c8:22:19 src_ip 107.218.134.149 dst_ip 78.174.204.77 ip_proto udp src_port 50399 dst_port 19527 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10271 flower src_mac 02:77:bd:74:75:7b dst_mac 02:c6:fd:6c:14:ed vlan_id 3677 vlan_ethtype 0x0800 src_ip 69.247.145.16 dst_ip 43.90.149.30 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10272 flower src_mac 02:1a:de:2f:55:1f dst_mac 02:7b:29:9a:70:f6 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10273 flower src_mac 02:3d:4b:98:bc:cd dst_mac 02:eb:bf:5a:17:1d src_ip 100.14.118.86 dst_ip 116.67.214.207 ip_proto icmp code 37 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10274 flower src_mac 02:82:0e:7f:ff:d5 dst_mac 02:5a:f5:d0:8a:47 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10275 flower src_mac 02:9b:bc:2b:ae:ec dst_mac 02:01:17:d3:86:27 vlan_id 3665 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10276 flower src_mac 02:ad:19:8e:fe:49 dst_mac 02:70:bd:01:f7:cc vlan_id 3611 vlan_ethtype 0x0800 src_ip 55.26.145.143 dst_ip 21.170.246.75 ip_proto udp src_port 17655 dst_port 17997 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10277 flower src_mac 02:46:39:03:d4:4c dst_mac 02:a4:94:77:a5:50 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10278 flower src_mac 02:e5:9d:da:91:46 dst_mac 02:2b:16:df:91:78 src_ip 68.212.53.209 dst_ip 89.12.194.163 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10279 flower src_mac 02:c2:0d:ea:67:c7 dst_mac 02:80:b9:90:67:de action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10280 flower src_mac 02:c4:c2:af:d3:b8 dst_mac 02:0d:4a:82:89:ef vlan_id 434 vlan_ethtype ipv4 src_ip 41.100.134.44 dst_ip 82.219.197.57 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10281 flower src_mac 02:12:30:27:9a:28 dst_mac 02:76:5d:d6:fd:22 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10282 flower src_mac 02:4b:6e:e4:27:2d dst_mac 02:6d:bd:47:9d:66 vlan_id 2744 vlan_ethtype ip src_ip 111.135.92.154 dst_ip 60.175.112.90 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10283 flower src_mac 02:d9:7c:42:f9:55 dst_mac 02:7d:9f:15:b5:f7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10284 flower src_mac 02:23:ce:b6:8e:fb dst_mac 02:ba:d7:4b:28:82 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10285 flower src_mac 02:b4:ae:72:30:6d dst_mac 02:a4:03:5b:5c:54 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10286 flower src_mac 02:44:0a:d0:a7:d2 dst_mac 02:2e:6b:8f:29:af action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10287 flower src_mac 02:65:a7:d6:87:f1 dst_mac 02:5f:65:c9:49:55 src_ip 122.189.235.45 dst_ip 97.34.213.59 ip_proto udp src_port 22516 dst_port 16229 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10288 flower src_mac 02:e9:e6:58:e9:6c dst_mac 02:74:ef:be:8f:64 vlan_id 3227 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10289 flower src_mac 02:cc:dc:d5:c7:cb dst_mac 02:82:22:01:c6:58 src_ip 65.224.10.3 dst_ip 68.70.170.65 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10290 flower src_mac 02:ca:32:f5:b4:c1 dst_mac 02:56:0d:ed:d1:e2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10291 flower src_mac 02:34:9e:d6:b7:a8 dst_mac 02:52:2d:e2:6d:77 vlan_id 2300 vlan_ethtype ip src_ip 42.163.174.214 dst_ip 61.124.87.215 ip_proto udp src_port 3151 dst_port 6280 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10292 flower src_mac 02:74:26:7f:e1:6d dst_mac 02:48:92:f0:46:8f vlan_id 2376 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10293 flower src_mac 02:a1:5d:32:6a:72 dst_mac 02:7e:74:17:6d:3d action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10294 flower src_mac 02:6b:70:a8:32:70 dst_mac 02:f6:1d:aa:c5:b2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10295 flower src_mac 02:e2:1f:71:14:d0 dst_mac 02:25:4f:6b:c0:cc action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10296 flower src_mac 02:0a:04:c0:2e:ac dst_mac 02:b2:b4:1e:26:bb vlan_id 2233 vlan_ethtype ipv4 src_ip 56.156.215.4 dst_ip 78.49.231.169 ip_proto udp src_port 39573 dst_port 46631 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10297 flower src_mac 02:9c:8d:27:2a:06 dst_mac 02:77:cb:ac:35:cf src_ip 61.125.234.15 dst_ip 60.0.24.123 ip_proto udp src_port 27699 dst_port 16815 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:f9:80:d5:ca:eb dst_mac 02:72:6c:c2:05:fe vlan_id 1669 vlan_ethtype ip src_ip 108.55.181.233 dst_ip 102.151.109.213 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10299 flower src_mac 02:73:8d:7a:8a:8c dst_mac 02:6e:f0:96:cc:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10300 flower src_mac 02:6f:ba:bd:1d:47 dst_mac 02:0e:af:09:a3:d9 vlan_id 289 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10301 flower src_mac 02:33:91:cd:7b:9d dst_mac 02:ba:10:56:41:88 vlan_id 3356 vlan_ethtype 0x0800 src_ip 98.100.231.67 dst_ip 32.198.189.10 ip_proto udp src_port 45443 dst_port 33230 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10302 flower src_mac 02:f4:ad:d1:c1:be dst_mac 02:96:72:cc:d6:89 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10303 flower src_mac 02:7f:8d:1e:04:50 dst_mac 02:30:b1:71:81:f4 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10304 flower src_mac 02:bd:9d:a1:5b:65 dst_mac 02:a6:1e:7b:7b:65 vlan_id 1119 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10305 flower src_mac 02:67:58:c7:ab:6b dst_mac 02:a2:d5:08:09:fb vlan_id 2514 vlan_ethtype ipv4 src_ip 111.145.44.151 dst_ip 28.247.172.210 ip_proto tcp src_port 56466 dst_port 36586 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10306 flower src_mac 02:d5:43:a9:18:6e dst_mac 02:6c:5a:db:68:55 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10307 flower src_mac 02:86:91:6d:c8:35 dst_mac 02:39:62:b4:8f:fd vlan_id 64 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10308 flower src_mac 02:f5:00:8a:7c:02 dst_mac 02:41:90:b9:ed:89 vlan_id 367 vlan_ethtype ip src_ip 71.242.89.209 dst_ip 86.238.34.120 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10309 flower src_mac 02:87:00:e6:6a:9a dst_mac 02:a5:a3:fe:fc:1a vlan_id 1145 vlan_ethtype ip src_ip 54.23.139.234 dst_ip 47.57.196.139 ip_proto tcp src_port 39145 dst_port 43957 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10310 flower src_mac 02:b2:29:56:d9:23 dst_mac 02:b7:f6:5f:d6:f3 vlan_id 2961 vlan_ethtype ipv4 src_ip 64.204.203.27 dst_ip 102.189.33.42 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10311 flower src_mac 02:b9:b9:38:1e:ae dst_mac 02:bb:94:af:74:60 vlan_id 1047 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10312 flower src_mac 02:b3:1a:77:e5:03 dst_mac 02:33:46:ab:77:b3 vlan_id 2206 vlan_ethtype ipv4 src_ip 20.9.53.175 dst_ip 14.164.48.32 ip_proto tcp src_port 38169 dst_port 54531 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10313 flower src_mac 02:2a:9c:f0:99:88 dst_mac 02:aa:8d:94:e7:5f action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10314 flower src_mac 02:4a:12:49:66:2c dst_mac 02:36:3d:55:b7:a3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10315 flower src_mac 02:ee:dd:0b:cd:79 dst_mac 02:05:b6:45:cc:ba action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10316 flower src_mac 02:6b:ab:8c:28:ba dst_mac 02:72:db:3c:19:30 vlan_id 3431 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10317 flower src_mac 02:d3:dd:42:6b:41 dst_mac 02:0b:97:4a:3d:76 vlan_id 96 vlan_ethtype ipv4 src_ip 124.108.14.79 dst_ip 73.199.181.196 ip_proto udp src_port 57742 dst_port 28305 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10318 flower src_mac 02:9a:eb:d6:3a:80 dst_mac 02:75:ce:3c:a1:1d vlan_id 3452 vlan_ethtype 0x0800 src_ip 37.204.9.125 dst_ip 19.170.85.233 ip_proto tcp src_port 29666 dst_port 12465 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10319 flower src_mac 02:e9:74:e7:94:c0 dst_mac 02:ad:29:d5:32:a5 vlan_id 3286 vlan_ethtype ip src_ip 59.72.149.97 dst_ip 102.93.238.165 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10320 flower src_mac 02:dc:e7:b8:e1:9d dst_mac 02:e5:14:af:c5:9b vlan_id 92 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10321 flower src_mac 02:68:93:44:a1:1f dst_mac 02:77:af:00:4f:ab vlan_id 2844 vlan_ethtype 0x0800 src_ip 109.46.216.35 dst_ip 93.155.121.59 ip_proto udp src_port 4145 dst_port 6133 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10322 flower src_mac 02:0a:d5:74:7f:f1 dst_mac 02:c9:66:c8:cd:97 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10323 flower src_mac 02:27:ec:41:cc:72 dst_mac 02:42:5d:34:bd:d4 src_ip 45.222.94.206 dst_ip 56.137.225.140 ip_proto udp src_port 5459 dst_port 17799 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10324 flower src_mac 02:ce:85:31:08:2f dst_mac 02:79:9a:0a:35:98 vlan_id 3874 vlan_ethtype ipv4 src_ip 53.67.85.45 dst_ip 107.53.58.240 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10325 flower src_mac 02:8d:c3:0d:c5:34 dst_mac 02:0c:de:0c:66:ee action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10326 flower src_mac 02:dc:47:39:25:bf dst_mac 02:85:8e:f6:9b:b8 vlan_id 137 vlan_ethtype ipv4 src_ip 44.138.166.94 dst_ip 87.61.22.39 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10327 flower src_mac 02:21:0b:1c:83:e1 dst_mac 02:7c:2d:35:3c:b4 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10328 flower src_mac 02:75:e6:5f:11:8a dst_mac 02:3a:c2:da:d0:01 src_ip 39.140.101.99 dst_ip 86.147.28.60 ip_proto tcp src_port 3251 dst_port 52354 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:6f:da:d9:c6:16 dst_mac 02:a6:d2:9d:83:dc vlan_id 2336 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10330 flower src_mac 02:39:aa:f3:42:1f dst_mac 02:a4:8a:9f:2d:46 src_ip 99.128.200.198 dst_ip 67.63.179.33 ip_proto icmp code 197 type 3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10331 flower src_mac 02:f2:69:20:d2:34 dst_mac 02:29:e1:86:5b:06 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10332 flower src_mac 02:48:63:60:b9:02 dst_mac 02:0b:70:78:80:ac action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10333 flower src_mac 02:91:0e:f1:94:7b dst_mac 02:ef:8b:87:09:6c action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10334 flower src_mac 02:37:83:ef:2b:b8 dst_mac 02:a6:4a:ce:a5:60 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10335 flower src_mac 02:ce:4e:35:36:9a dst_mac 02:44:ad:08:c6:5e vlan_id 32 vlan_ethtype ip src_ip 109.155.91.94 dst_ip 119.27.168.207 ip_proto udp src_port 32402 dst_port 13261 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10336 flower src_mac 02:18:5f:dd:4d:55 dst_mac 02:31:73:e2:a6:59 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10337 flower src_mac 02:c7:77:e5:ea:12 dst_mac 02:35:17:ad:a2:d9 vlan_id 728 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10338 flower src_mac 02:92:91:1c:c9:1a dst_mac 02:ac:ae:1a:04:ad vlan_id 207 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10339 flower src_mac 02:9c:87:ef:34:02 dst_mac 02:38:08:8a:e7:38 vlan_id 2673 vlan_ethtype ip src_ip 45.233.12.228 dst_ip 55.210.242.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10340 flower src_mac 02:dc:5e:83:69:b1 dst_mac 02:43:61:b2:8d:9f vlan_id 247 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10341 flower src_mac 02:d9:3a:ba:34:ef dst_mac 02:3e:06:c3:41:75 vlan_id 2079 vlan_ethtype 0x0800 src_ip 69.222.53.45 dst_ip 52.106.164.146 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10342 flower src_mac 02:ba:e2:74:f1:81 dst_mac 02:8c:ab:4b:47:a6 vlan_id 3451 vlan_ethtype ip src_ip 126.225.237.222 dst_ip 52.75.190.127 ip_proto tcp src_port 5733 dst_port 50368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10343 flower src_mac 02:35:fd:e8:2f:10 dst_mac 02:58:00:49:df:51 vlan_id 3107 vlan_ethtype 0x0800 src_ip 121.198.200.122 dst_ip 88.181.69.159 ip_proto tcp src_port 43526 dst_port 36761 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10344 flower src_mac 02:01:fb:40:82:bc dst_mac 02:50:fa:60:b5:fd vlan_id 3583 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10345 flower src_mac 02:54:96:b5:8a:7d dst_mac 02:e0:b0:df:db:6c vlan_id 4037 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10346 flower src_mac 02:dc:18:b5:91:a2 dst_mac 02:c2:4d:f5:21:8d vlan_id 2188 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:22:52:eb:40:90 dst_mac 02:df:fc:35:4f:9f vlan_id 262 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10348 flower src_mac 02:eb:23:bf:82:0a dst_mac 02:ee:14:4e:2b:5e vlan_id 1674 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10349 flower src_mac 02:2e:2c:dd:b5:d2 dst_mac 02:e9:35:3f:a9:96 src_ip 22.253.120.55 dst_ip 115.144.43.241 ip_proto icmp code 152 type 11 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:f7:2f:18:84:b2 dst_mac 02:aa:32:eb:40:b5 vlan_id 2062 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10351 flower src_mac 02:6f:ec:51:27:a4 dst_mac 02:2d:fd:72:ef:2f action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10352 flower src_mac 02:47:16:88:ac:bc dst_mac 02:9b:e3:71:cb:08 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10353 flower src_mac 02:5e:7f:5c:71:24 dst_mac 02:f9:85:84:30:21 src_ip 48.212.137.150 dst_ip 93.135.100.140 ip_proto icmp code 26 type 18 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10354 flower src_mac 02:13:4f:02:ad:35 dst_mac 02:39:9b:4c:31:7d src_ip 48.14.220.113 dst_ip 31.205.163.224 action trap && tc filter add dev swp1 ingress protocol ip pref 10355 flower src_mac 02:e1:9b:4d:48:d2 dst_mac 02:c9:f1:29:a1:5d src_ip 17.81.23.212 dst_ip 59.39.219.208 ip_proto udp src_port 5527 dst_port 6163 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10356 flower src_mac 02:ad:81:7d:32:02 dst_mac 02:c1:30:31:eb:73 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10357 flower src_mac 02:37:e7:5e:b2:80 dst_mac 02:8d:e9:dd:5d:ba action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10358 flower src_mac 02:84:ea:24:4f:2b dst_mac 02:90:8b:bb:1c:6e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10359 flower src_mac 02:16:bd:bb:ce:fa dst_mac 02:b4:0f:dc:97:d5 vlan_id 2746 vlan_ethtype 0x0800 src_ip 60.140.124.225 dst_ip 70.169.230.101 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10360 flower src_mac 02:c0:f4:1c:a0:87 dst_mac 02:78:8b:b8:00:86 vlan_id 2628 vlan_ethtype 0x0800 src_ip 94.200.249.181 dst_ip 21.24.216.46 ip_proto udp src_port 17302 dst_port 38272 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10361 flower src_mac 02:ab:f5:4c:20:92 dst_mac 02:ac:5c:d1:e5:ca action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10362 flower src_mac 02:0b:e5:98:a3:f0 dst_mac 02:3a:a7:29:79:79 vlan_id 3959 vlan_ethtype 0x0800 src_ip 18.26.37.212 dst_ip 124.44.190.5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10363 flower src_mac 02:6c:1c:21:90:36 dst_mac 02:21:16:a1:5b:d4 vlan_id 3812 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10364 flower src_mac 02:c1:50:36:8d:f6 dst_mac 02:f6:8b:93:e8:0f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10365 flower src_mac 02:08:b6:2b:96:c9 dst_mac 02:45:e9:5c:2b:62 vlan_id 75 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10366 flower src_mac 02:9c:d1:a2:95:cf dst_mac 02:ed:91:b9:10:65 vlan_id 1153 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10367 flower src_mac 02:7a:a8:03:93:c8 dst_mac 02:df:88:60:c6:d8 src_ip 20.153.17.203 dst_ip 100.172.222.243 ip_proto udp src_port 54385 dst_port 31002 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10368 flower src_mac 02:7c:87:f2:9f:de dst_mac 02:08:2b:6d:20:37 vlan_id 3975 vlan_ethtype 0x0800 src_ip 72.213.62.12 dst_ip 17.17.210.95 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10369 flower src_mac 02:d0:2a:14:13:de dst_mac 02:31:14:35:48:ba action drop && tc filter add dev swp1 ingress protocol ip pref 10370 flower src_mac 02:c7:5c:80:0d:96 dst_mac 02:6c:e8:c3:8e:41 src_ip 59.236.152.22 dst_ip 123.77.122.93 ip_proto tcp src_port 37856 dst_port 50854 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10371 flower src_mac 02:de:c0:e5:85:00 dst_mac 02:d8:b3:42:8f:d5 vlan_id 1889 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10372 flower src_mac 02:5b:b4:29:06:08 dst_mac 02:ae:d8:fb:e6:e0 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10373 flower src_mac 02:d5:56:ec:40:ae dst_mac 02:e1:2c:4b:61:77 action drop && tc filter add dev swp1 ingress protocol ip pref 10374 flower src_mac 02:f9:75:6b:31:10 dst_mac 02:ef:4e:32:56:e6 src_ip 51.20.27.106 dst_ip 72.223.130.142 ip_proto icmp code 134 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10375 flower src_mac 02:14:02:96:eb:a4 dst_mac 02:b9:a0:9a:e4:47 vlan_id 3856 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10376 flower src_mac 02:a9:ef:4f:0c:df dst_mac 02:ac:1c:8f:2f:10 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10377 flower src_mac 02:e1:eb:e1:14:9b dst_mac 02:3d:32:b0:80:80 vlan_id 2230 vlan_ethtype 0x0800 src_ip 111.61.165.249 dst_ip 71.122.239.88 ip_proto udp src_port 53642 dst_port 63099 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10378 flower src_mac 02:39:96:b6:fc:6b dst_mac 02:04:9b:9e:b5:fd vlan_id 3745 vlan_ethtype ip src_ip 85.163.212.26 dst_ip 12.62.215.2 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10379 flower src_mac 02:ad:eb:6e:41:76 dst_mac 02:2f:d7:95:18:a4 vlan_id 367 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10380 flower src_mac 02:13:99:0b:f9:a2 dst_mac 02:93:6f:4b:16:5e action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10381 flower src_mac 02:d4:a3:c2:ce:2a dst_mac 02:99:f4:4d:80:29 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10382 flower src_mac 02:fa:c8:ef:89:53 dst_mac 02:46:83:bd:fd:95 vlan_id 951 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10383 flower src_mac 02:a8:08:de:21:62 dst_mac 02:f9:11:8c:c8:50 vlan_id 3390 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10384 flower src_mac 02:37:7b:cf:d0:56 dst_mac 02:5e:ba:31:15:13 vlan_id 550 vlan_ethtype 0x0800 src_ip 32.209.19.187 dst_ip 105.177.0.127 ip_proto tcp src_port 35338 dst_port 36405 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10385 flower src_mac 02:d2:fa:03:22:80 dst_mac 02:bd:ef:3f:f8:89 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10386 flower src_mac 02:64:a9:1a:2f:47 dst_mac 02:bb:67:91:52:17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10387 flower src_mac 02:64:cd:a0:2d:6a dst_mac 02:0e:bf:fc:14:11 vlan_id 818 vlan_ethtype 0x0800 src_ip 13.125.206.114 dst_ip 39.11.187.124 ip_proto udp src_port 12987 dst_port 36159 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10388 flower src_mac 02:80:93:e2:15:60 dst_mac 02:32:bb:ea:dc:b3 src_ip 119.151.6.21 dst_ip 63.166.11.203 ip_proto udp src_port 14385 dst_port 58440 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10389 flower src_mac 02:a7:a8:cd:8e:78 dst_mac 02:d4:21:4c:89:8a vlan_id 3561 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10390 flower src_mac 02:9e:4d:e5:30:5f dst_mac 02:92:eb:61:7d:19 vlan_id 3195 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10391 flower src_mac 02:c4:11:55:9c:ba dst_mac 02:22:6f:04:be:e9 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10392 flower src_mac 02:27:41:a1:e2:49 dst_mac 02:81:ed:29:23:52 vlan_id 3487 vlan_ethtype 0x0800 src_ip 101.98.128.215 dst_ip 41.55.188.49 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10393 flower src_mac 02:56:77:d2:22:83 dst_mac 02:55:05:29:f9:54 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10394 flower src_mac 02:0a:3f:30:b9:24 dst_mac 02:e4:b5:14:3c:9a vlan_id 2822 vlan_ethtype ipv4 src_ip 20.245.219.179 dst_ip 19.131.110.216 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10395 flower src_mac 02:dd:36:a7:5f:0f dst_mac 02:a9:61:4d:da:a2 vlan_id 1730 vlan_ethtype 0x0800 src_ip 30.188.110.22 dst_ip 37.54.87.11 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10396 flower src_mac 02:af:1a:ba:8e:90 dst_mac 02:51:2d:82:2b:81 vlan_id 2311 vlan_ethtype ipv4 src_ip 69.93.197.192 dst_ip 20.230.100.196 ip_proto tcp src_port 950 dst_port 5610 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10397 flower src_mac 02:63:39:d8:b1:5b dst_mac 02:dc:bd:f3:fc:62 src_ip 13.65.213.205 dst_ip 52.36.222.111 ip_proto tcp src_port 26041 dst_port 34287 action trap && tc filter add dev swp1 ingress protocol ip pref 10398 flower src_mac 02:19:59:24:f0:eb dst_mac 02:f9:0b:c4:b3:91 src_ip 19.17.110.175 dst_ip 30.184.152.49 ip_proto icmp code 154 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10399 flower src_mac 02:95:fe:3e:7f:09 dst_mac 02:56:ee:69:46:01 src_ip 121.155.72.118 dst_ip 30.61.12.200 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 10400 flower src_mac 02:90:9e:81:bd:3f dst_mac 02:d9:52:66:e2:70 vlan_id 3946 vlan_ethtype ip src_ip 86.219.105.228 dst_ip 32.34.226.17 ip_proto udp src_port 16798 dst_port 18378 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10401 flower src_mac 02:9c:27:a6:14:de dst_mac 02:c6:19:e4:8d:cc vlan_id 3491 vlan_ethtype ipv4 src_ip 120.239.12.26 dst_ip 117.145.126.71 ip_proto tcp src_port 42355 dst_port 48028 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10402 flower src_mac 02:eb:0a:4d:67:74 dst_mac 02:88:ac:a8:97:f6 vlan_id 2664 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10403 flower src_mac 02:ad:ac:a2:2f:95 dst_mac 02:4d:26:db:c3:37 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10404 flower src_mac 02:f5:c6:f7:b5:09 dst_mac 02:50:27:96:2a:56 vlan_id 4024 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10405 flower src_mac 02:00:d1:4d:cd:3f dst_mac 02:14:22:9f:70:7e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10406 flower src_mac 02:5a:70:ee:01:29 dst_mac 02:9c:59:6a:27:41 vlan_id 1494 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10407 flower src_mac 02:87:0d:23:89:b7 dst_mac 02:ec:cb:67:2d:0f vlan_id 2 vlan_ethtype 0x0800 src_ip 78.221.163.240 dst_ip 111.51.34.13 ip_proto udp src_port 22236 dst_port 20855 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10408 flower src_mac 02:bf:50:b2:a4:c0 dst_mac 02:76:94:c2:59:20 vlan_id 829 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10409 flower src_mac 02:e5:6f:9e:8e:3b dst_mac 02:10:01:ae:9d:f5 src_ip 33.52.1.43 dst_ip 70.96.99.208 ip_proto tcp src_port 31779 dst_port 64798 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10410 flower src_mac 02:09:f1:1a:80:16 dst_mac 02:07:97:5a:94:f3 vlan_id 2667 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10411 flower src_mac 02:34:5d:10:9c:a0 dst_mac 02:15:3c:26:22:56 src_ip 86.212.175.77 dst_ip 103.44.45.211 ip_proto tcp src_port 47245 dst_port 40889 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10412 flower src_mac 02:8d:23:db:08:f3 dst_mac 02:d1:48:dc:a5:f6 vlan_id 1173 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10413 flower src_mac 02:33:c3:aa:e4:b2 dst_mac 02:2b:46:4f:da:62 vlan_id 2282 vlan_ethtype ip src_ip 126.211.199.232 dst_ip 96.228.75.59 action pass && tc filter add dev swp1 ingress protocol ip pref 10414 flower src_mac 02:a4:49:dc:4f:57 dst_mac 02:a9:c1:12:4e:7c src_ip 46.235.162.184 dst_ip 99.218.199.49 ip_proto icmp code 227 type 0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10415 flower src_mac 02:5f:71:11:43:33 dst_mac 02:82:e3:84:41:a7 vlan_id 222 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10416 flower src_mac 02:09:ac:91:1e:95 dst_mac 02:50:47:47:49:39 src_ip 41.25.244.210 dst_ip 33.191.190.231 ip_proto tcp src_port 44303 dst_port 9637 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10417 flower src_mac 02:5e:6d:54:1a:35 dst_mac 02:0f:3d:60:44:fa action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10418 flower src_mac 02:7f:bb:89:e1:03 dst_mac 02:c8:5c:d4:39:e3 action trap && tc filter add dev swp1 ingress protocol ip pref 10419 flower src_mac 02:39:e0:7b:a1:38 dst_mac 02:02:27:55:54:81 src_ip 80.225.233.165 dst_ip 103.37.198.214 ip_proto tcp src_port 27383 dst_port 11929 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10420 flower src_mac 02:0e:e7:df:cc:03 dst_mac 02:7b:01:2e:ae:ad vlan_id 1768 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10421 flower src_mac 02:3f:31:38:30:df dst_mac 02:28:f0:b2:1b:c2 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10422 flower src_mac 02:6b:c4:34:d1:11 dst_mac 02:16:5a:08:59:e1 src_ip 47.92.11.140 dst_ip 79.152.171.135 ip_proto icmp code 172 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10423 flower src_mac 02:60:48:43:7c:14 dst_mac 02:03:0b:9c:73:f8 vlan_id 3204 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10424 flower src_mac 02:df:2e:44:27:98 dst_mac 02:dc:33:85:31:da src_ip 14.50.13.104 dst_ip 126.206.83.216 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10425 flower src_mac 02:72:e6:66:cd:60 dst_mac 02:6a:85:77:52:13 vlan_id 1249 vlan_ethtype 0x0800 src_ip 16.127.241.127 dst_ip 57.163.19.147 action drop && tc filter add dev swp1 ingress protocol ip pref 10426 flower src_mac 02:4e:4f:72:c2:8e dst_mac 02:e4:c2:bd:aa:88 src_ip 46.174.72.221 dst_ip 36.42.238.142 ip_proto icmp code 157 type 3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10427 flower src_mac 02:27:65:c5:a7:67 dst_mac 02:4c:75:81:47:29 vlan_id 199 vlan_ethtype 0x0800 src_ip 26.87.33.201 dst_ip 55.46.231.134 ip_proto tcp src_port 22141 dst_port 21080 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:21:14:64:ef:eb dst_mac 02:30:4f:68:cf:fb vlan_id 1640 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10429 flower src_mac 02:7b:a5:55:b9:1f dst_mac 02:83:6e:51:55:97 action drop && tc filter add dev swp1 ingress protocol ip pref 10430 flower src_mac 02:c4:dc:b5:41:c7 dst_mac 02:c0:5b:06:39:24 src_ip 91.165.227.98 dst_ip 57.12.89.165 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10431 flower src_mac 02:a6:fd:32:61:08 dst_mac 02:97:97:11:52:7e action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10432 flower src_mac 02:50:7c:9e:80:ea dst_mac 02:61:c2:73:3f:af src_ip 112.93.211.99 dst_ip 29.67.245.161 ip_proto udp src_port 48235 dst_port 38047 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10433 flower src_mac 02:cb:48:16:87:e2 dst_mac 02:75:55:47:48:81 vlan_id 494 vlan_ethtype 0x0800 src_ip 68.29.246.76 dst_ip 102.103.191.228 ip_proto udp src_port 8026 dst_port 646 action drop && tc filter add dev swp1 ingress protocol ip pref 10434 flower src_mac 02:98:c1:09:9e:e4 dst_mac 02:13:e4:b3:99:42 src_ip 54.217.93.79 dst_ip 52.103.96.219 ip_proto udp src_port 16347 dst_port 47766 action pass && tc filter add dev swp1 ingress protocol ip pref 10435 flower src_mac 02:1e:59:8b:f5:f4 dst_mac 02:cc:9b:e1:06:b0 src_ip 34.85.63.59 dst_ip 109.164.244.60 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10436 flower src_mac 02:86:89:8f:83:72 dst_mac 02:22:d1:21:63:3f vlan_id 77 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10437 flower src_mac 02:82:c6:22:b0:9a dst_mac 02:ee:d1:d3:ab:05 vlan_id 1244 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10438 flower src_mac 02:6a:fa:4b:77:91 dst_mac 02:e5:e2:32:28:6a src_ip 56.133.236.144 dst_ip 86.59.171.173 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10439 flower src_mac 02:d3:1d:69:b7:2c dst_mac 02:86:b2:c1:d7:88 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10440 flower src_mac 02:12:19:dd:47:6d dst_mac 02:d7:ad:7e:5f:43 vlan_id 644 vlan_ethtype ipv4 src_ip 76.57.149.146 dst_ip 21.109.172.50 ip_proto udp src_port 55290 dst_port 35614 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10441 flower src_mac 02:90:6a:2f:b0:68 dst_mac 02:11:bf:98:06:ea vlan_id 4000 vlan_ethtype ip src_ip 61.223.192.6 dst_ip 77.82.158.61 ip_proto udp src_port 61993 dst_port 59954 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10442 flower src_mac 02:ed:20:72:2f:c8 dst_mac 02:2a:9e:f7:ae:1e vlan_id 2788 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10443 flower src_mac 02:43:42:fa:c8:6f dst_mac 02:5f:67:c3:19:12 vlan_id 92 vlan_ethtype 0x0800 src_ip 38.69.80.197 dst_ip 29.253.100.122 ip_proto udp src_port 41198 dst_port 29081 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:a6:a9:ce:c1:12 dst_mac 02:fa:42:86:b4:02 vlan_id 2033 vlan_ethtype ip src_ip 123.248.235.175 dst_ip 37.139.209.12 ip_proto udp src_port 46535 dst_port 23736 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10445 flower src_mac 02:94:d4:da:0e:fb dst_mac 02:0d:cb:60:ac:9c action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10446 flower src_mac 02:cc:a1:5a:64:0c dst_mac 02:ca:15:02:aa:ce src_ip 55.82.242.167 dst_ip 39.30.7.132 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10447 flower src_mac 02:f7:9c:82:ac:b0 dst_mac 02:13:47:ca:88:02 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10448 flower src_mac 02:df:8c:3e:16:31 dst_mac 02:1c:d8:5a:72:47 vlan_id 3549 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:4a:27:cc:d6:b3 dst_mac 02:81:b9:02:93:d9 vlan_id 1090 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10450 flower src_mac 02:33:53:07:8f:96 dst_mac 02:92:fc:96:84:af vlan_id 2232 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10451 flower src_mac 02:a8:73:08:22:18 dst_mac 02:8d:94:92:2f:50 src_ip 19.114.92.150 dst_ip 81.62.130.64 ip_proto udp src_port 19718 dst_port 43922 action trap && tc filter add dev swp1 ingress protocol ip pref 10452 flower src_mac 02:46:c9:f7:77:d7 dst_mac 02:68:66:63:f0:ce src_ip 94.172.246.98 dst_ip 95.157.88.138 ip_proto icmp code 116 type 4 action pass && tc filter add dev swp1 ingress protocol ip pref 10453 flower src_mac 02:3b:42:0e:24:db dst_mac 02:4f:83:f6:fa:fa src_ip 39.131.160.24 dst_ip 97.29.149.26 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10454 flower src_mac 02:20:27:ac:06:76 dst_mac 02:6d:0f:24:d0:5b vlan_id 788 vlan_ethtype 0x0800 src_ip 28.25.159.131 dst_ip 54.121.253.128 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10455 flower src_mac 02:1a:27:c9:a3:f8 dst_mac 02:dc:03:bf:6f:48 src_ip 97.211.202.172 dst_ip 38.147.56.66 ip_proto tcp src_port 13423 dst_port 9502 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10456 flower src_mac 02:79:87:34:16:70 dst_mac 02:87:02:45:b6:21 vlan_id 3998 vlan_ethtype ipv4 src_ip 125.91.138.217 dst_ip 35.8.101.78 ip_proto udp src_port 604 dst_port 5433 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10457 flower src_mac 02:64:50:5f:b7:9a dst_mac 02:11:28:5e:12:0e vlan_id 1916 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10458 flower src_mac 02:e1:3b:23:5b:51 dst_mac 02:3e:65:87:3f:7a vlan_id 4045 vlan_ethtype ipv4 src_ip 125.188.20.65 dst_ip 47.151.3.107 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10459 flower src_mac 02:57:14:ac:70:6a dst_mac 02:3d:2d:1e:b7:79 vlan_id 3210 vlan_ethtype ipv4 src_ip 23.228.11.75 dst_ip 19.186.39.90 ip_proto udp src_port 62854 dst_port 35145 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10460 flower src_mac 02:69:1c:92:12:8d dst_mac 02:40:38:f7:b7:ad vlan_id 3413 vlan_ethtype ip src_ip 56.209.93.156 dst_ip 23.178.10.230 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10461 flower src_mac 02:c8:c7:17:b3:e0 dst_mac 02:cb:20:29:1d:9e vlan_id 532 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10462 flower src_mac 02:82:44:d6:5f:1a dst_mac 02:42:64:7d:d2:ed src_ip 117.62.146.26 dst_ip 121.109.187.233 ip_proto udp src_port 53242 dst_port 43550 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10463 flower src_mac 02:ba:8f:91:72:55 dst_mac 02:19:f9:59:fb:b1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10464 flower src_mac 02:da:94:46:04:d5 dst_mac 02:69:f2:ac:ea:47 vlan_id 2066 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10465 flower src_mac 02:6e:c5:f4:cc:2c dst_mac 02:a4:0d:23:77:95 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10466 flower src_mac 02:31:4b:1f:b2:50 dst_mac 02:5b:29:ce:38:e2 src_ip 92.160.132.42 dst_ip 124.251.186.39 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10467 flower src_mac 02:ab:f3:dc:17:8c dst_mac 02:24:1a:ec:00:7a src_ip 88.91.170.108 dst_ip 38.142.82.221 ip_proto tcp src_port 3452 dst_port 36236 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10468 flower src_mac 02:48:2c:6d:f5:e7 dst_mac 02:17:54:2d:12:24 vlan_id 1895 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10469 flower src_mac 02:c9:c6:b1:b7:51 dst_mac 02:5c:48:2b:7d:ac vlan_id 1922 vlan_ethtype ip src_ip 117.36.93.197 dst_ip 67.123.155.2 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10470 flower src_mac 02:45:31:0e:a1:9c dst_mac 02:c8:4f:e5:fd:05 src_ip 76.37.118.99 dst_ip 112.219.5.122 ip_proto udp src_port 50118 dst_port 1404 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10471 flower src_mac 02:20:4d:de:d7:af dst_mac 02:ee:ae:28:f7:fe vlan_id 3240 vlan_ethtype ipv4 src_ip 43.119.132.92 dst_ip 33.30.138.174 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10472 flower src_mac 02:20:13:6b:d1:d3 dst_mac 02:5d:fb:2a:12:08 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10473 flower src_mac 02:03:7a:a3:51:68 dst_mac 02:f0:3e:64:9d:15 vlan_id 2405 vlan_ethtype ipv4 src_ip 109.159.72.151 dst_ip 96.231.205.203 ip_proto tcp src_port 58108 dst_port 30764 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10474 flower src_mac 02:18:1d:5b:80:f8 dst_mac 02:d3:d0:c5:16:a9 vlan_id 3479 vlan_ethtype ip src_ip 46.211.124.247 dst_ip 78.2.51.122 ip_proto tcp src_port 42078 dst_port 61951 action trap && tc filter add dev swp1 ingress protocol ip pref 10475 flower src_mac 02:fd:cf:e7:79:2a dst_mac 02:32:45:f8:01:1a src_ip 17.163.44.195 dst_ip 98.136.117.128 ip_proto icmp code 210 type 0 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10476 flower src_mac 02:b6:b8:6b:89:cd dst_mac 02:ff:65:4c:0e:20 src_ip 70.143.150.93 dst_ip 26.244.134.236 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10477 flower src_mac 02:17:21:84:31:1a dst_mac 02:ae:1a:b8:d0:04 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10478 flower src_mac 02:31:02:99:e7:8b dst_mac 02:75:bf:03:4a:fd vlan_id 1803 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10479 flower src_mac 02:e0:d4:42:16:20 dst_mac 02:55:f2:15:42:2c vlan_id 626 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10480 flower src_mac 02:bb:f8:40:b0:20 dst_mac 02:e9:ea:13:fe:24 vlan_id 3316 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10481 flower src_mac 02:4f:cc:20:2b:0d dst_mac 02:d7:7b:06:6e:9d vlan_id 1982 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10482 flower src_mac 02:b2:a8:f1:41:fc dst_mac 02:53:6c:33:8e:1f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10483 flower src_mac 02:f7:ce:5f:bb:bd dst_mac 02:28:4a:50:ff:45 vlan_id 265 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10484 flower src_mac 02:77:93:7d:df:79 dst_mac 02:bb:62:38:5d:3b vlan_id 1954 vlan_ethtype 0x0800 src_ip 65.168.200.59 dst_ip 82.130.182.67 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10485 flower src_mac 02:2f:fa:bd:e2:03 dst_mac 02:0d:9e:c3:7f:5e vlan_id 1154 vlan_ethtype ipv4 src_ip 73.19.89.52 dst_ip 83.122.48.152 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10486 flower src_mac 02:ff:cb:0e:87:53 dst_mac 02:a5:a5:9c:02:54 vlan_id 712 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10487 flower src_mac 02:e4:88:4e:22:bd dst_mac 02:f2:56:9a:ce:15 src_ip 98.235.125.1 dst_ip 55.168.247.8 ip_proto tcp src_port 56950 dst_port 21618 action drop && tc filter add dev swp1 ingress protocol ip pref 10488 flower src_mac 02:41:87:6d:28:13 dst_mac 02:d6:69:d7:de:5a src_ip 24.204.138.145 dst_ip 117.139.34.233 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10489 flower src_mac 02:25:a5:58:68:8e dst_mac 02:82:60:f4:88:44 vlan_id 1124 vlan_ethtype ip src_ip 104.51.116.19 dst_ip 60.197.88.22 ip_proto udp src_port 6722 dst_port 50757 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10490 flower src_mac 02:e0:84:8f:b5:56 dst_mac 02:d0:aa:9b:f1:d1 vlan_id 3021 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10491 flower src_mac 02:6f:54:c8:08:40 dst_mac 02:0a:a2:de:2f:99 vlan_id 1419 vlan_ethtype ip src_ip 49.153.42.247 dst_ip 67.118.201.54 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10492 flower src_mac 02:1f:3a:56:ca:94 dst_mac 02:aa:80:5e:aa:70 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10493 flower src_mac 02:ae:16:47:a0:2a dst_mac 02:ff:f5:b8:8a:05 vlan_id 2433 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10494 flower src_mac 02:c7:6d:6f:2f:df dst_mac 02:2a:4e:39:b4:c9 vlan_id 3140 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10495 flower src_mac 02:ae:dc:a0:f1:e3 dst_mac 02:28:51:cd:1d:13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10496 flower src_mac 02:b1:c4:e3:9b:5c dst_mac 02:2c:d1:3d:bb:6d vlan_id 3960 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10497 flower src_mac 02:82:76:a3:f9:31 dst_mac 02:47:8a:3c:02:f7 vlan_id 616 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10498 flower src_mac 02:a8:bd:3a:78:73 dst_mac 02:93:db:8c:15:c2 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10499 flower src_mac 02:b2:b6:33:f4:e7 dst_mac 02:10:76:75:03:d0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10500 flower src_mac 02:5f:8b:4a:4e:60 dst_mac 02:5d:f2:d8:f7:0f vlan_id 3897 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10501 flower src_mac 02:59:3a:a3:ca:79 dst_mac 02:44:90:99:5d:e4 vlan_id 2275 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10502 flower src_mac 02:33:d5:f8:d7:4d dst_mac 02:77:ae:ce:7b:6e src_ip 95.115.28.109 dst_ip 94.247.172.151 ip_proto udp src_port 20079 dst_port 12327 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10503 flower src_mac 02:06:98:d6:32:6f dst_mac 02:cd:91:24:fc:c8 vlan_id 3721 vlan_ethtype 0x0800 src_ip 59.130.247.243 dst_ip 95.71.8.144 action pass && tc filter add dev swp1 ingress protocol ip pref 10504 flower src_mac 02:7c:9a:78:27:99 dst_mac 02:c6:9b:7b:ef:25 src_ip 45.108.94.40 dst_ip 50.133.0.117 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10505 flower src_mac 02:fc:c7:1d:a2:d8 dst_mac 02:59:9e:56:4a:f1 vlan_id 3312 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10506 flower src_mac 02:bf:23:9a:17:9e dst_mac 02:e2:11:7c:f7:96 vlan_id 2128 vlan_ethtype ipv4 src_ip 36.161.79.4 dst_ip 75.90.37.47 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10507 flower src_mac 02:74:d0:fc:11:41 dst_mac 02:60:6b:32:b0:3b vlan_id 2325 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10508 flower src_mac 02:f3:b7:57:ff:0c dst_mac 02:97:a5:18:0b:b3 action pass && tc filter add dev swp1 ingress protocol ip pref 10509 flower src_mac 02:f4:46:db:63:75 dst_mac 02:47:d4:8c:00:3a src_ip 38.189.158.166 dst_ip 112.203.217.122 ip_proto udp src_port 43885 dst_port 59398 action drop && tc filter add dev swp1 ingress protocol ip pref 10510 flower src_mac 02:9b:ee:25:ec:6e dst_mac 02:18:a8:7f:c8:fd src_ip 103.197.166.87 dst_ip 40.45.186.29 ip_proto icmp code 253 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10511 flower src_mac 02:55:2f:10:61:55 dst_mac 02:4c:a0:51:6a:d8 vlan_id 3409 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10512 flower src_mac 02:08:60:e7:b0:a5 dst_mac 02:11:ee:4a:2e:a0 vlan_id 3973 vlan_ethtype 0x0800 src_ip 86.35.156.2 dst_ip 17.92.39.2 ip_proto udp src_port 56150 dst_port 5424 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10513 flower src_mac 02:0b:65:12:60:b2 dst_mac 02:f3:bd:2d:8b:18 vlan_id 3051 vlan_ethtype 0x0800 src_ip 69.145.96.197 dst_ip 66.196.95.129 ip_proto udp src_port 52041 dst_port 19443 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10514 flower src_mac 02:2a:1a:2f:a2:b1 dst_mac 02:e0:5a:0e:8d:cb action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10515 flower src_mac 02:db:7f:dc:b3:b1 dst_mac 02:35:b2:d0:03:56 vlan_id 1370 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10516 flower src_mac 02:7b:87:44:03:50 dst_mac 02:67:9d:b8:c7:7c src_ip 18.69.249.238 dst_ip 41.141.18.171 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10517 flower src_mac 02:57:e4:98:cf:fd dst_mac 02:cc:0f:7f:4d:5f vlan_id 2023 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10518 flower src_mac 02:25:7f:18:d8:e9 dst_mac 02:57:5c:84:fe:61 src_ip 59.181.95.197 dst_ip 21.89.20.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10519 flower src_mac 02:52:a8:17:da:41 dst_mac 02:92:4e:b9:57:69 vlan_id 1079 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:39:59:49:7b:f1 dst_mac 02:d3:8c:11:69:cf vlan_id 1944 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10521 flower src_mac 02:05:7e:92:06:a6 dst_mac 02:ca:4e:f3:f4:9b src_ip 97.202.128.155 dst_ip 60.26.233.70 ip_proto udp src_port 36942 dst_port 54706 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10522 flower src_mac 02:12:11:2a:ad:ff dst_mac 02:f5:e8:76:e6:ff src_ip 104.92.218.197 dst_ip 124.115.40.222 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10523 flower src_mac 02:d9:d5:43:8f:86 dst_mac 02:f7:09:7a:22:54 action pass && tc filter add dev swp1 ingress protocol ip pref 10524 flower src_mac 02:e1:b4:0c:e1:37 dst_mac 02:c4:15:67:a6:0d src_ip 101.216.70.6 dst_ip 49.173.225.197 ip_proto tcp src_port 22078 dst_port 55471 action pass && tc filter add dev swp1 ingress protocol ip pref 10525 flower src_mac 02:0d:91:3f:6c:7d dst_mac 02:6d:68:d9:58:21 src_ip 121.74.84.22 dst_ip 58.196.218.14 ip_proto tcp src_port 49416 dst_port 48566 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10526 flower src_mac 02:6b:78:ca:9b:a8 dst_mac 02:ac:68:1b:1e:3a vlan_id 1804 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10527 flower src_mac 02:1c:4e:3f:fb:b8 dst_mac 02:54:13:02:06:36 vlan_id 3323 vlan_ethtype ipv4 src_ip 107.251.89.68 dst_ip 65.42.167.187 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10528 flower src_mac 02:03:e6:bc:41:5d dst_mac 02:d4:6a:5a:d9:0a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10529 flower src_mac 02:74:3f:e5:58:ea dst_mac 02:ee:f2:5d:93:c2 vlan_id 2088 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10530 flower src_mac 02:18:2f:2f:fa:ec dst_mac 02:4c:b7:d1:c5:06 vlan_id 2976 vlan_ethtype 0x0800 src_ip 99.213.152.20 dst_ip 64.86.111.176 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10531 flower src_mac 02:88:7b:78:58:a4 dst_mac 02:60:60:4f:a5:e4 vlan_id 217 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10532 flower src_mac 02:53:fb:38:82:ef dst_mac 02:ce:4d:fc:b1:23 src_ip 80.70.193.221 dst_ip 30.194.195.155 ip_proto udp src_port 26020 dst_port 51853 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10533 flower src_mac 02:e8:12:ef:b4:66 dst_mac 02:cf:3c:39:33:91 src_ip 69.237.210.42 dst_ip 24.248.84.92 ip_proto icmp code 211 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10534 flower src_mac 02:26:06:32:85:04 dst_mac 02:2b:ad:6b:5a:3b vlan_id 3316 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10535 flower src_mac 02:72:8c:2b:0f:97 dst_mac 02:af:02:d9:fd:c8 vlan_id 2400 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10536 flower src_mac 02:ea:cc:eb:ac:6a dst_mac 02:60:98:39:4f:e2 src_ip 34.58.50.124 dst_ip 106.72.228.43 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10537 flower src_mac 02:2d:42:18:a7:fa dst_mac 02:ba:f2:3f:eb:53 vlan_id 3559 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10538 flower src_mac 02:8d:bf:1c:48:29 dst_mac 02:05:9e:72:f4:74 vlan_id 2687 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10539 flower src_mac 02:3b:76:5f:ee:5e dst_mac 02:96:1c:8c:89:36 vlan_id 1392 vlan_ethtype 0x0800 src_ip 44.132.28.54 dst_ip 21.70.221.79 ip_proto tcp src_port 56374 dst_port 40799 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10540 flower src_mac 02:52:11:47:ae:b7 dst_mac 02:ac:11:e9:76:92 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10541 flower src_mac 02:d9:7f:0d:5f:04 dst_mac 02:35:ca:82:7d:3a vlan_id 2039 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10542 flower src_mac 02:73:dc:b1:cb:6f dst_mac 02:53:10:a6:70:3f src_ip 62.67.237.230 dst_ip 72.175.49.54 action trap && tc filter add dev swp1 ingress protocol ip pref 10543 flower src_mac 02:08:dc:e2:d0:ee dst_mac 02:ae:71:ac:70:64 src_ip 63.180.200.175 dst_ip 85.111.47.135 ip_proto udp src_port 37204 dst_port 18773 action trap && tc filter add dev swp1 ingress protocol ip pref 10544 flower src_mac 02:58:8c:2c:1d:c1 dst_mac 02:0f:67:2e:d7:1f src_ip 62.118.248.83 dst_ip 102.145.188.144 ip_proto icmp code 37 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10545 flower src_mac 02:3b:00:e2:6f:d7 dst_mac 02:b5:1a:30:f1:52 vlan_id 3075 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10546 flower src_mac 02:18:18:3b:c9:00 dst_mac 02:c3:31:10:2f:46 vlan_id 1437 vlan_ethtype ipv4 src_ip 27.206.91.185 dst_ip 118.197.225.213 ip_proto udp src_port 24063 dst_port 62278 action drop && tc filter add dev swp1 ingress protocol ip pref 10547 flower src_mac 02:6b:82:61:76:0e dst_mac 02:94:52:1a:d0:c5 src_ip 94.140.166.69 dst_ip 95.83.28.156 ip_proto tcp src_port 32343 dst_port 5633 action pass && tc filter add dev swp1 ingress protocol ip pref 10548 flower src_mac 02:7d:91:2a:8f:a2 dst_mac 02:5f:3e:ee:1f:6b src_ip 36.117.102.223 dst_ip 53.94.76.121 ip_proto udp src_port 17308 dst_port 14717 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10549 flower src_mac 02:d6:22:be:31:62 dst_mac 02:89:01:3a:16:ba vlan_id 2544 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10550 flower src_mac 02:2f:a6:7f:d0:31 dst_mac 02:dc:12:e9:12:b3 src_ip 60.132.215.165 dst_ip 67.75.151.26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10551 flower src_mac 02:42:8e:eb:ca:3a dst_mac 02:52:d2:f4:86:ee vlan_id 1803 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10552 flower src_mac 02:33:91:d1:59:c2 dst_mac 02:79:3e:a8:a7:54 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10553 flower src_mac 02:45:a0:64:9e:e7 dst_mac 02:03:f9:cb:52:41 vlan_id 1415 vlan_ethtype ip src_ip 16.236.237.223 dst_ip 49.173.211.213 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10554 flower src_mac 02:35:5b:89:82:f0 dst_mac 02:2d:f2:b2:8d:df vlan_id 1468 vlan_ethtype ipv4 src_ip 41.116.171.187 dst_ip 105.252.129.3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10555 flower src_mac 02:8d:93:70:2d:6d dst_mac 02:ca:0a:14:5d:3f vlan_id 2929 vlan_ethtype 0x0800 src_ip 14.140.216.54 dst_ip 110.226.29.116 ip_proto tcp src_port 65281 dst_port 28924 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10556 flower src_mac 02:85:a8:fb:27:f1 dst_mac 02:c6:f3:69:a4:0d vlan_id 20 vlan_ethtype 0x0800 src_ip 60.114.83.41 dst_ip 16.143.176.223 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10557 flower src_mac 02:6b:8c:64:04:4e dst_mac 02:c3:10:c2:f9:af action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10558 flower src_mac 02:2e:c4:9e:cb:3e dst_mac 02:da:5e:e1:1c:b1 vlan_id 3156 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10559 flower src_mac 02:85:ef:04:96:dc dst_mac 02:cc:b9:79:82:ff src_ip 76.223.4.104 dst_ip 56.131.108.132 ip_proto udp src_port 54653 dst_port 63858 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10560 flower src_mac 02:78:fd:b4:f9:a0 dst_mac 02:5d:9e:42:e7:e5 vlan_id 1831 vlan_ethtype ip src_ip 56.182.214.7 dst_ip 13.200.36.167 ip_proto tcp src_port 30465 dst_port 39844 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10561 flower src_mac 02:ca:91:fd:18:b2 dst_mac 02:29:58:bb:99:34 vlan_id 3091 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10562 flower src_mac 02:91:ee:c1:ba:72 dst_mac 02:a5:c3:fd:24:85 src_ip 108.38.74.10 dst_ip 61.39.148.120 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10563 flower src_mac 02:33:3a:ab:3f:a0 dst_mac 02:5c:43:be:f3:04 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10564 flower src_mac 02:b7:31:3f:25:1c dst_mac 02:24:b2:17:6a:6b vlan_id 1251 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10565 flower src_mac 02:6b:4e:44:70:2f dst_mac 02:b5:db:b5:26:fc vlan_id 1985 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10566 flower src_mac 02:d4:a1:b4:d7:10 dst_mac 02:69:50:9c:30:ed vlan_id 405 vlan_ethtype ipv4 src_ip 29.234.156.193 dst_ip 59.45.16.203 ip_proto udp src_port 57108 dst_port 34398 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10567 flower src_mac 02:23:5e:ce:98:72 dst_mac 02:10:59:fb:2c:1e src_ip 51.211.193.79 dst_ip 32.246.132.110 ip_proto icmp code 205 type 11 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10568 flower src_mac 02:c6:05:a6:f1:55 dst_mac 02:5a:c8:bf:eb:b8 vlan_id 2631 vlan_ethtype ip src_ip 74.101.151.4 dst_ip 106.74.159.206 ip_proto udp src_port 22265 dst_port 20319 action trap && tc filter add dev swp1 ingress protocol ip pref 10569 flower src_mac 02:c5:a0:8a:28:d5 dst_mac 02:fb:6f:7d:5b:b1 src_ip 58.90.167.30 dst_ip 88.248.186.41 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10570 flower src_mac 02:30:1e:5b:2d:53 dst_mac 02:f8:51:c6:a7:23 vlan_id 2277 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10571 flower src_mac 02:16:a2:8d:ba:ad dst_mac 02:6e:4b:38:74:d4 vlan_id 2108 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10572 flower src_mac 02:80:f0:b1:fb:1f dst_mac 02:5c:69:59:a3:13 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10573 flower src_mac 02:7f:1f:d9:15:3c dst_mac 02:60:95:ef:81:56 vlan_id 3853 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10574 flower src_mac 02:1f:da:cf:46:e7 dst_mac 02:c9:ff:f5:56:f4 vlan_id 3851 vlan_ethtype ip src_ip 30.113.104.158 dst_ip 20.139.78.133 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10575 flower src_mac 02:8c:88:f4:92:d4 dst_mac 02:a4:ec:25:12:ac vlan_id 3182 vlan_ethtype 0x0800 src_ip 26.207.98.240 dst_ip 74.204.211.147 ip_proto udp src_port 18177 dst_port 62922 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:a4:fd:4d:d8:1d dst_mac 02:4b:a2:f8:f0:cd vlan_id 2744 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10577 flower src_mac 02:59:44:47:04:ec dst_mac 02:42:fe:aa:31:26 vlan_id 1241 vlan_ethtype ip src_ip 89.37.30.174 dst_ip 25.57.125.237 ip_proto tcp src_port 30976 dst_port 10298 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10578 flower src_mac 02:10:e4:b9:8c:c8 dst_mac 02:26:56:b9:c8:e0 src_ip 78.72.89.169 dst_ip 70.54.87.176 ip_proto udp src_port 12922 dst_port 50845 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10579 flower src_mac 02:04:fc:c9:44:bf dst_mac 02:42:cf:fa:86:65 vlan_id 873 vlan_ethtype ipv4 src_ip 22.73.246.229 dst_ip 86.236.56.241 ip_proto tcp src_port 40385 dst_port 60222 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10580 flower src_mac 02:ae:b5:2e:a3:ab dst_mac 02:20:0c:b2:83:ae action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10581 flower src_mac 02:dc:70:b9:5f:b4 dst_mac 02:8e:8d:dd:2b:11 vlan_id 3751 vlan_ethtype ip src_ip 23.175.211.120 dst_ip 28.139.47.189 ip_proto tcp src_port 34395 dst_port 52429 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10582 flower src_mac 02:3c:13:fe:46:eb dst_mac 02:06:73:5a:1c:e7 vlan_id 2371 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10583 flower src_mac 02:8e:0b:7b:98:40 dst_mac 02:6d:70:82:be:ae src_ip 57.249.134.63 dst_ip 18.249.187.49 ip_proto udp src_port 32875 dst_port 3219 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10584 flower src_mac 02:a7:4c:a9:40:ce dst_mac 02:3a:13:04:d1:02 vlan_id 1797 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10585 flower src_mac 02:ea:aa:08:1f:a2 dst_mac 02:92:7d:3d:90:33 src_ip 125.163.17.98 dst_ip 19.146.98.225 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10586 flower src_mac 02:0c:fc:b0:1f:bc dst_mac 02:63:d5:f7:81:a4 vlan_id 743 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10587 flower src_mac 02:6b:b7:45:16:ca dst_mac 02:98:0f:0a:9e:b6 vlan_id 1012 vlan_ethtype 0x0800 src_ip 22.31.184.102 dst_ip 49.40.98.47 ip_proto udp src_port 3914 dst_port 39286 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10588 flower src_mac 02:a0:e5:da:ae:80 dst_mac 02:04:bf:f2:f6:f4 vlan_id 1985 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10589 flower src_mac 02:10:9a:c3:2d:ce dst_mac 02:33:c7:03:19:15 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10590 flower src_mac 02:5d:88:c5:36:d5 dst_mac 02:b6:ad:9f:ce:1a action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10591 flower src_mac 02:2b:ea:5c:91:f7 dst_mac 02:5c:a2:38:47:30 src_ip 53.45.116.246 dst_ip 48.3.102.73 ip_proto icmp code 190 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10592 flower src_mac 02:9a:cd:84:71:2f dst_mac 02:16:fb:05:ac:3a vlan_id 2652 vlan_ethtype ipv4 src_ip 72.246.7.184 dst_ip 86.118.161.113 ip_proto udp src_port 16538 dst_port 30572 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10593 flower src_mac 02:d0:42:4d:b7:56 dst_mac 02:0e:a1:54:3c:35 vlan_id 1089 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10594 flower src_mac 02:02:c0:23:38:fb dst_mac 02:f1:5a:f8:ce:c2 src_ip 33.232.126.112 dst_ip 99.143.202.51 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10595 flower src_mac 02:2b:97:f3:3f:e1 dst_mac 02:bc:dc:e9:75:67 vlan_id 3460 vlan_ethtype 0x0800 src_ip 28.87.236.92 dst_ip 124.59.60.95 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10596 flower src_mac 02:02:82:ac:6c:cc dst_mac 02:0c:ec:69:73:53 vlan_id 1764 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10597 flower src_mac 02:23:ee:28:6d:f2 dst_mac 02:55:ed:71:1b:0f vlan_id 820 vlan_ethtype 0x0800 src_ip 50.74.73.200 dst_ip 27.240.67.224 ip_proto tcp src_port 14330 dst_port 19227 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10598 flower src_mac 02:3b:3b:47:17:89 dst_mac 02:4a:a8:47:94:4a vlan_id 982 vlan_ethtype 0x0800 src_ip 60.211.160.106 dst_ip 51.115.205.249 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10599 flower src_mac 02:05:4e:4f:08:78 dst_mac 02:bb:b0:60:fd:44 vlan_id 1474 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10600 flower src_mac 02:de:85:61:83:2e dst_mac 02:12:09:f4:61:f0 src_ip 67.145.240.217 dst_ip 76.161.125.236 ip_proto udp src_port 47276 dst_port 51395 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10601 flower src_mac 02:44:5d:6f:e9:a8 dst_mac 02:11:d8:1e:97:6b src_ip 72.55.250.140 dst_ip 118.164.91.249 ip_proto icmp code 188 type 15 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10602 flower src_mac 02:9e:6c:93:c1:d9 dst_mac 02:d5:55:a2:a3:ff vlan_id 1794 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10603 flower src_mac 02:93:9a:42:b7:2a dst_mac 02:37:1c:65:1c:c8 vlan_id 2657 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10604 flower src_mac 02:d3:75:3d:d4:d7 dst_mac 02:e1:0b:35:93:01 src_ip 72.79.244.36 dst_ip 64.66.232.136 ip_proto udp src_port 33202 dst_port 24248 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10605 flower src_mac 02:63:85:5c:d2:36 dst_mac 02:75:e8:c3:05:1b vlan_id 791 vlan_ethtype ipv4 src_ip 26.245.75.80 dst_ip 123.203.220.112 ip_proto tcp src_port 50101 dst_port 48755 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10606 flower src_mac 02:03:fc:57:f6:49 dst_mac 02:4a:e6:22:ce:49 action trap && tc filter add dev swp1 ingress protocol ip pref 10607 flower src_mac 02:7a:d9:eb:79:bc dst_mac 02:c2:8f:dd:9c:8e src_ip 72.61.16.88 dst_ip 21.255.14.78 ip_proto icmp code 192 type 14 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10608 flower src_mac 02:9d:88:ea:09:0b dst_mac 02:f1:40:10:3b:9c src_ip 58.20.67.35 dst_ip 49.107.76.185 ip_proto udp src_port 56338 dst_port 16095 action trap && tc filter add dev swp1 ingress protocol ip pref 10609 flower src_mac 02:c1:6f:38:f8:48 dst_mac 02:aa:73:a8:57:33 src_ip 24.223.229.148 dst_ip 23.49.11.18 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10610 flower src_mac 02:38:67:46:a9:c0 dst_mac 02:7d:b0:de:e6:18 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10611 flower src_mac 02:c4:19:15:cf:4a dst_mac 02:34:77:42:46:da vlan_id 3643 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10612 flower src_mac 02:b0:f6:cb:94:e0 dst_mac 02:65:82:f3:b3:ef src_ip 116.92.110.196 dst_ip 44.28.14.202 ip_proto udp src_port 23666 dst_port 4879 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10613 flower src_mac 02:56:e7:32:94:dd dst_mac 02:06:1c:5e:26:b1 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10614 flower src_mac 02:c7:1b:74:fa:3d dst_mac 02:40:a3:01:d7:b6 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10615 flower src_mac 02:9b:33:f0:f3:18 dst_mac 02:77:5b:24:90:87 src_ip 84.43.249.96 dst_ip 36.142.156.19 ip_proto icmp code 41 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10616 flower src_mac 02:96:41:f9:3b:70 dst_mac 02:b3:13:62:ac:69 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10617 flower src_mac 02:87:ef:85:ec:ee dst_mac 02:3f:5c:95:e7:0e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10618 flower src_mac 02:ad:2b:91:56:dd dst_mac 02:77:57:33:91:48 vlan_id 1373 vlan_ethtype ip src_ip 43.198.49.138 dst_ip 117.222.110.237 action pass && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:11:96:6d:bb:b9 dst_mac 02:80:66:d1:42:16 src_ip 86.225.51.76 dst_ip 61.53.65.216 ip_proto tcp src_port 13910 dst_port 33755 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10620 flower src_mac 02:a1:29:5a:59:36 dst_mac 02:d2:01:68:bf:61 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10621 flower src_mac 02:e6:99:d7:c3:11 dst_mac 02:ac:65:0b:73:c8 src_ip 48.1.1.112 dst_ip 104.184.123.56 ip_proto udp src_port 2148 dst_port 16826 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10622 flower src_mac 02:4e:dd:e2:db:93 dst_mac 02:af:a9:9b:82:14 src_ip 70.60.254.59 dst_ip 110.183.189.171 ip_proto udp src_port 887 dst_port 52326 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10623 flower src_mac 02:0b:2d:d8:cc:55 dst_mac 02:a5:ef:e8:3a:52 vlan_id 2945 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10624 flower src_mac 02:ae:a7:76:94:18 dst_mac 02:e5:95:31:96:fc vlan_id 490 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10625 flower src_mac 02:da:6e:91:98:ba dst_mac 02:50:d6:c7:d1:46 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10626 flower src_mac 02:88:40:a2:c9:0b dst_mac 02:7a:5b:6c:f9:2d vlan_id 1746 vlan_ethtype ipv4 src_ip 112.144.57.141 dst_ip 87.198.151.242 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10627 flower src_mac 02:54:91:48:07:e5 dst_mac 02:df:48:4f:41:56 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10628 flower src_mac 02:e0:9a:24:90:30 dst_mac 02:e6:82:96:33:9f vlan_id 533 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10629 flower src_mac 02:b4:db:06:52:b6 dst_mac 02:5a:79:f2:cf:7e action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10630 flower src_mac 02:02:95:26:ce:e2 dst_mac 02:47:31:ad:4c:53 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10631 flower src_mac 02:5d:e1:26:d2:8d dst_mac 02:c0:4f:53:d6:3d vlan_id 622 vlan_ethtype 0x0800 src_ip 64.253.207.213 dst_ip 95.228.123.179 ip_proto udp src_port 23604 dst_port 376 action trap && tc filter add dev swp1 ingress protocol ip pref 10632 flower src_mac 02:93:69:79:7c:0d dst_mac 02:35:5e:de:0b:dd src_ip 50.10.56.226 dst_ip 91.12.153.227 action pass && tc filter add dev swp1 ingress protocol ip pref 10633 flower src_mac 02:f1:e4:96:ea:b1 dst_mac 02:9c:8b:61:f8:ed src_ip 74.193.154.32 dst_ip 57.200.17.32 ip_proto icmp code 55 type 0 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:4c:6e:c9:bb:16 dst_mac 02:ec:57:ca:f9:fc vlan_id 2916 vlan_ethtype ip src_ip 89.75.178.81 dst_ip 25.160.151.30 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10635 flower src_mac 02:50:8f:7a:f4:a8 dst_mac 02:c8:6d:7c:f8:42 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10636 flower src_mac 02:55:14:ee:b4:30 dst_mac 02:f2:f9:e8:00:d2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10637 flower src_mac 02:05:1a:a7:98:f8 dst_mac 02:40:72:3c:69:5f vlan_id 3115 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10638 flower src_mac 02:b2:70:8d:17:2e dst_mac 02:03:3d:e2:8c:c3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10639 flower src_mac 02:21:7a:1a:75:2c dst_mac 02:a0:10:bb:6d:0e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10640 flower src_mac 02:dc:ff:dc:23:00 dst_mac 02:35:b6:ac:18:bb vlan_id 3659 vlan_ethtype ipv4 src_ip 123.142.74.180 dst_ip 93.181.53.162 ip_proto tcp src_port 26566 dst_port 7125 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10641 flower src_mac 02:51:bb:d3:fd:7c dst_mac 02:02:c2:9a:4c:3c vlan_id 2451 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10642 flower src_mac 02:41:d7:8d:90:6e dst_mac 02:bd:af:ef:b5:b6 vlan_id 2380 vlan_ethtype ip src_ip 25.195.160.202 dst_ip 92.247.58.235 ip_proto tcp src_port 24937 dst_port 48268 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10643 flower src_mac 02:36:92:75:e7:27 dst_mac 02:88:c0:f2:4a:23 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10644 flower src_mac 02:75:30:53:e8:1f dst_mac 02:6a:d3:6e:c5:a4 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10645 flower src_mac 02:bc:96:9b:67:ee dst_mac 02:b2:23:d3:58:66 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10646 flower src_mac 02:51:c8:06:12:61 dst_mac 02:ac:8e:15:19:bb vlan_id 1971 vlan_ethtype ipv4 src_ip 34.130.16.230 dst_ip 68.136.205.196 ip_proto udp src_port 1026 dst_port 41938 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10647 flower src_mac 02:3a:46:27:28:57 dst_mac 02:19:5d:08:8b:4e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:19:1d:aa:dd:d6 dst_mac 02:13:24:27:5b:45 vlan_id 3024 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:30:e5:0f:79:db dst_mac 02:65:d6:3d:de:39 vlan_id 4033 vlan_ethtype ip src_ip 52.128.28.15 dst_ip 93.37.105.245 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10650 flower src_mac 02:65:56:e8:42:4f dst_mac 02:95:fb:5f:c4:84 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10651 flower src_mac 02:b4:ed:8d:7c:96 dst_mac 02:cb:f5:96:a0:a9 vlan_id 502 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10652 flower src_mac 02:fb:a9:ae:bb:6a dst_mac 02:e4:a8:56:49:9d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10653 flower src_mac 02:2e:97:56:66:52 dst_mac 02:97:00:2e:84:a5 vlan_id 2820 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10654 flower src_mac 02:68:f7:3d:82:e7 dst_mac 02:53:d1:37:48:c6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10655 flower src_mac 02:cb:8d:23:bd:a4 dst_mac 02:35:1b:88:84:95 vlan_id 1319 vlan_ethtype ip src_ip 50.87.232.22 dst_ip 13.101.147.183 ip_proto udp src_port 19030 dst_port 41905 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10656 flower src_mac 02:fd:e0:66:c6:29 dst_mac 02:84:ee:31:3e:ce src_ip 91.0.14.191 dst_ip 49.88.58.227 ip_proto icmp code 61 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10657 flower src_mac 02:ed:b6:2c:f6:57 dst_mac 02:27:60:8e:ca:77 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10658 flower src_mac 02:19:cc:ac:63:ef dst_mac 02:22:80:bd:a8:12 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10659 flower src_mac 02:16:ce:33:ab:df dst_mac 02:71:de:b8:e4:cc action pass && tc filter add dev swp1 ingress protocol ip pref 10660 flower src_mac 02:e4:01:97:3e:f2 dst_mac 02:b7:d8:80:1c:45 src_ip 85.32.164.214 dst_ip 80.172.69.204 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10661 flower src_mac 02:32:27:5c:10:9a dst_mac 02:22:c4:95:7c:0a vlan_id 3967 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10662 flower src_mac 02:6d:16:74:aa:9a dst_mac 02:ee:28:02:d9:67 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10663 flower src_mac 02:3e:b2:52:29:ac dst_mac 02:96:a0:73:ac:26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10664 flower src_mac 02:c7:4c:fc:29:1d dst_mac 02:3c:c8:c1:d4:73 vlan_id 3284 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10665 flower src_mac 02:6d:01:4d:7c:9a dst_mac 02:a0:81:c2:2e:c1 vlan_id 2792 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10666 flower src_mac 02:a2:ce:50:c8:df dst_mac 02:a4:62:f0:dc:6a vlan_id 1806 vlan_ethtype ipv4 src_ip 75.225.126.234 dst_ip 18.51.144.39 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10667 flower src_mac 02:c3:14:92:b5:67 dst_mac 02:42:a8:aa:73:68 src_ip 92.235.27.53 dst_ip 25.160.173.77 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10668 flower src_mac 02:7e:6d:d6:21:39 dst_mac 02:06:9e:63:1e:8d vlan_id 2336 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10669 flower src_mac 02:ad:de:af:dd:20 dst_mac 02:b7:33:52:86:66 src_ip 29.136.196.1 dst_ip 18.115.157.215 ip_proto icmp code 132 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10670 flower src_mac 02:71:5a:7d:fe:6e dst_mac 02:65:9b:53:ab:82 src_ip 26.150.79.28 dst_ip 28.213.70.231 ip_proto udp src_port 1110 dst_port 54062 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10671 flower src_mac 02:c4:86:d0:de:97 dst_mac 02:50:c8:8b:f8:fb vlan_id 3632 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10672 flower src_mac 02:a7:77:66:53:28 dst_mac 02:d8:56:e1:0b:39 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10673 flower src_mac 02:f0:e8:f2:9d:2d dst_mac 02:0f:45:c2:8a:b0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10674 flower src_mac 02:da:28:f0:6c:37 dst_mac 02:92:23:de:31:0c vlan_id 4091 vlan_ethtype 0x0800 src_ip 12.153.114.187 dst_ip 55.174.83.162 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10675 flower src_mac 02:57:ff:ab:d6:aa dst_mac 02:8c:ab:d3:9f:a7 action pass && tc filter add dev swp1 ingress protocol ip pref 10676 flower src_mac 02:26:b6:c0:3a:48 dst_mac 02:60:7d:87:c8:f6 src_ip 112.181.75.237 dst_ip 67.148.160.183 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10677 flower src_mac 02:5e:68:9f:00:b8 dst_mac 02:ab:9f:9f:83:d1 src_ip 36.234.6.150 dst_ip 124.171.160.93 ip_proto tcp src_port 61182 dst_port 17508 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10678 flower src_mac 02:f1:76:26:a2:27 dst_mac 02:16:8a:f5:93:96 src_ip 121.253.46.38 dst_ip 101.141.221.234 ip_proto icmp code 12 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10679 flower src_mac 02:00:6f:c3:6e:3e dst_mac 02:66:c4:c6:52:9b vlan_id 3434 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10680 flower src_mac 02:cd:f7:8c:88:98 dst_mac 02:ee:15:66:c2:32 src_ip 75.187.74.166 dst_ip 112.247.178.131 ip_proto tcp src_port 36242 dst_port 62703 action pass && tc filter add dev swp1 ingress protocol ip pref 10681 flower src_mac 02:aa:05:7e:79:89 dst_mac 02:e1:b1:b6:b6:65 src_ip 112.175.153.34 dst_ip 105.78.143.39 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10682 flower src_mac 02:b5:c7:4d:f7:6f dst_mac 02:90:88:06:bf:a8 src_ip 23.198.41.167 dst_ip 57.15.87.153 action drop && tc filter add dev swp1 ingress protocol ip pref 10683 flower src_mac 02:51:1a:aa:0f:8c dst_mac 02:09:d1:48:64:fb src_ip 21.52.251.175 dst_ip 55.42.62.50 ip_proto udp src_port 45398 dst_port 46410 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10684 flower src_mac 02:0c:7f:89:53:0c dst_mac 02:84:e6:78:ef:c4 src_ip 26.100.136.250 dst_ip 64.255.167.104 ip_proto tcp src_port 21081 dst_port 51727 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10685 flower src_mac 02:17:e0:cf:74:27 dst_mac 02:6b:aa:10:f2:13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10686 flower src_mac 02:cc:5f:b7:10:7d dst_mac 02:51:b3:4b:d2:65 vlan_id 707 vlan_ethtype 0x0800 src_ip 19.117.134.174 dst_ip 18.85.73.177 ip_proto udp src_port 48144 dst_port 9343 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10687 flower src_mac 02:96:19:20:5b:a1 dst_mac 02:79:61:af:db:b1 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10688 flower src_mac 02:47:b2:24:72:39 dst_mac 02:0c:85:78:51:cc vlan_id 1640 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10689 flower src_mac 02:99:4b:8d:16:61 dst_mac 02:08:c9:e3:4f:d0 vlan_id 3206 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10690 flower src_mac 02:d1:c0:d6:ad:94 dst_mac 02:d6:0c:80:9e:cd src_ip 81.4.8.154 dst_ip 42.118.116.79 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10691 flower src_mac 02:9d:8c:f3:50:7f dst_mac 02:f6:9f:dc:55:f1 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10692 flower src_mac 02:2d:1a:74:3f:f6 dst_mac 02:08:99:25:bc:a2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10693 flower src_mac 02:e8:04:ba:60:2d dst_mac 02:02:5c:dd:04:b1 vlan_id 959 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10694 flower src_mac 02:2c:a0:e6:8e:df dst_mac 02:7f:79:85:5a:30 src_ip 39.215.57.89 dst_ip 95.114.136.210 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10695 flower src_mac 02:06:72:ba:75:50 dst_mac 02:d8:d1:f7:d9:76 vlan_id 2621 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10696 flower src_mac 02:3f:05:77:d2:ae dst_mac 02:d7:d0:71:63:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10697 flower src_mac 02:3e:a5:fe:7d:01 dst_mac 02:81:3a:2c:10:57 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10698 flower src_mac 02:bb:5f:02:73:04 dst_mac 02:41:f5:98:e3:e5 vlan_id 3232 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10699 flower src_mac 02:b8:f7:39:29:75 dst_mac 02:b0:9c:4d:c9:a6 vlan_id 2792 vlan_ethtype ipv4 src_ip 59.29.95.95 dst_ip 124.157.8.44 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10700 flower src_mac 02:46:bf:a0:c4:b8 dst_mac 02:77:2a:25:1d:16 vlan_id 445 vlan_ethtype 0x0800 src_ip 94.253.17.7 dst_ip 123.158.102.27 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10701 flower src_mac 02:56:ff:74:b2:f8 dst_mac 02:d6:f6:fe:0e:58 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10702 flower src_mac 02:82:a8:8a:c4:82 dst_mac 02:04:06:36:b5:98 vlan_id 3973 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10703 flower src_mac 02:fa:87:db:6a:c3 dst_mac 02:64:27:99:d7:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10704 flower src_mac 02:18:08:34:6c:9c dst_mac 02:58:a7:89:c5:04 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10705 flower src_mac 02:14:c8:7d:60:8c dst_mac 02:b6:ab:2a:42:06 vlan_id 1861 vlan_ethtype ipv4 src_ip 106.187.225.126 dst_ip 123.44.172.219 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10706 flower src_mac 02:e6:e7:52:b7:cd dst_mac 02:03:20:59:8c:91 vlan_id 2721 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10707 flower src_mac 02:9d:55:00:7b:be dst_mac 02:f5:c4:3a:28:68 action pass && tc filter add dev swp1 ingress protocol ip pref 10708 flower src_mac 02:c1:66:02:90:56 dst_mac 02:03:b8:10:14:b3 src_ip 113.207.149.13 dst_ip 46.155.131.129 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10709 flower src_mac 02:87:6f:72:11:25 dst_mac 02:10:ef:8d:ff:2e src_ip 38.175.187.28 dst_ip 70.77.228.185 ip_proto udp src_port 65352 dst_port 24575 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10710 flower src_mac 02:f0:d2:be:f5:4c dst_mac 02:34:4c:dd:c0:bd src_ip 58.88.160.96 dst_ip 99.2.132.104 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10711 flower src_mac 02:fd:b9:79:9d:51 dst_mac 02:7c:95:0e:4c:dd src_ip 120.252.24.11 dst_ip 103.198.98.170 ip_proto tcp src_port 56820 dst_port 8613 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10712 flower src_mac 02:3a:1d:4b:bc:5a dst_mac 02:53:8a:a6:ba:2a vlan_id 1287 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10713 flower src_mac 02:a0:9f:2b:97:48 dst_mac 02:67:d1:64:4e:ab src_ip 123.116.166.24 dst_ip 37.49.173.106 ip_proto tcp src_port 29751 dst_port 28738 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10714 flower src_mac 02:09:51:6e:0b:37 dst_mac 02:40:52:0e:64:b1 vlan_id 3203 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10715 flower src_mac 02:ee:83:1b:af:f2 dst_mac 02:32:7d:37:e7:70 vlan_id 72 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10716 flower src_mac 02:84:b7:e1:a7:7f dst_mac 02:24:98:31:2c:29 vlan_id 972 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10717 flower src_mac 02:79:23:7f:0a:4e dst_mac 02:20:ff:b6:7e:19 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10718 flower src_mac 02:5f:3e:16:3b:cc dst_mac 02:c8:a2:17:16:28 vlan_id 1468 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10719 flower src_mac 02:cf:1d:b0:87:48 dst_mac 02:fd:ce:9c:84:8d vlan_id 3830 vlan_ethtype ipv4 src_ip 17.154.131.23 dst_ip 93.176.155.239 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10720 flower src_mac 02:85:4e:57:a9:03 dst_mac 02:c8:6e:91:86:60 vlan_id 319 vlan_ethtype ipv4 src_ip 97.245.55.150 dst_ip 120.245.154.205 ip_proto tcp src_port 56785 dst_port 53463 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10721 flower src_mac 02:80:f2:31:8b:09 dst_mac 02:00:af:22:e0:67 vlan_id 1782 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10722 flower src_mac 02:52:5e:07:79:83 dst_mac 02:65:db:99:23:d5 action trap && tc filter add dev swp1 ingress protocol ip pref 10723 flower src_mac 02:80:84:a7:6f:a9 dst_mac 02:c3:f2:2d:82:35 src_ip 74.51.239.211 dst_ip 21.33.147.11 ip_proto icmp code 38 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10724 flower src_mac 02:d7:10:34:83:0f dst_mac 02:65:e5:01:10:e7 vlan_id 604 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10725 flower src_mac 02:71:ed:c5:88:48 dst_mac 02:49:b6:d4:ad:7e src_ip 25.41.96.38 dst_ip 72.235.244.131 ip_proto icmp code 71 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10726 flower src_mac 02:39:a8:1a:44:0a dst_mac 02:51:b5:90:84:9b vlan_id 3360 vlan_ethtype 0x0800 src_ip 66.89.196.177 dst_ip 40.16.138.38 ip_proto tcp src_port 47003 dst_port 25223 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10727 flower src_mac 02:ef:ff:9c:16:90 dst_mac 02:21:42:53:6c:99 vlan_id 2109 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10728 flower src_mac 02:e3:46:18:1b:0e dst_mac 02:b4:e9:93:54:a8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10729 flower src_mac 02:e6:9e:8a:97:6b dst_mac 02:a7:9c:2d:f6:96 vlan_id 1924 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10730 flower src_mac 02:58:e5:82:8d:89 dst_mac 02:dc:e0:87:9f:24 vlan_id 1129 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10731 flower src_mac 02:65:47:6c:24:6e dst_mac 02:82:0f:37:92:31 src_ip 68.112.84.101 dst_ip 52.47.212.85 ip_proto udp src_port 10354 dst_port 47756 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10732 flower src_mac 02:52:2f:b3:c7:aa dst_mac 02:b2:4f:6c:02:08 vlan_id 1111 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10733 flower src_mac 02:cc:46:21:8c:81 dst_mac 02:fd:cf:df:42:8b src_ip 37.114.45.174 dst_ip 120.67.9.119 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10734 flower src_mac 02:99:df:d4:8d:33 dst_mac 02:1a:77:f5:4d:c6 vlan_id 1455 vlan_ethtype ip src_ip 120.119.79.249 dst_ip 60.122.248.248 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10735 flower src_mac 02:cd:a5:fa:2e:b8 dst_mac 02:f7:de:28:2d:63 vlan_id 2168 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10736 flower src_mac 02:97:3b:d8:41:ae dst_mac 02:75:cc:b3:75:52 vlan_id 2544 vlan_ethtype 0x0800 src_ip 93.128.20.194 dst_ip 67.254.150.25 ip_proto tcp src_port 1666 dst_port 718 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10737 flower src_mac 02:57:0a:bb:8c:c7 dst_mac 02:6d:ec:11:d4:da vlan_id 1023 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10738 flower src_mac 02:2d:d0:11:b3:c9 dst_mac 02:7b:1e:7d:80:b3 vlan_id 4016 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10739 flower src_mac 02:2f:5e:2e:e1:d9 dst_mac 02:a3:79:c0:6e:e3 vlan_id 2383 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10740 flower src_mac 02:d0:ae:67:85:34 dst_mac 02:8c:af:0d:db:f9 vlan_id 1378 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10741 flower src_mac 02:1e:e6:07:37:28 dst_mac 02:ef:16:c9:7a:85 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10742 flower src_mac 02:df:6f:8f:10:6d dst_mac 02:72:e7:96:f4:c1 vlan_id 3998 vlan_ethtype 0x0800 src_ip 96.203.211.243 dst_ip 121.239.7.19 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10743 flower src_mac 02:e2:5b:d2:73:54 dst_mac 02:80:7a:46:05:0c src_ip 120.184.7.220 dst_ip 92.181.124.150 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10744 flower src_mac 02:d4:00:c6:3a:ad dst_mac 02:19:9d:6e:a8:04 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10745 flower src_mac 02:4d:66:31:df:45 dst_mac 02:30:bf:b4:b3:18 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10746 flower src_mac 02:bf:bc:9f:0b:a1 dst_mac 02:88:7c:0c:1e:1d src_ip 35.216.42.110 dst_ip 88.188.143.160 ip_proto udp src_port 50779 dst_port 19853 action trap && tc filter add dev swp1 ingress protocol ip pref 10747 flower src_mac 02:82:de:c3:dd:8d dst_mac 02:d5:ca:97:b6:d3 src_ip 87.88.3.218 dst_ip 87.123.203.24 ip_proto tcp src_port 57555 dst_port 57308 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10748 flower src_mac 02:7d:15:70:60:ed dst_mac 02:f8:ab:08:6f:46 vlan_id 1712 vlan_ethtype 0x0800 src_ip 14.88.175.19 dst_ip 25.160.61.142 ip_proto udp src_port 56182 dst_port 7422 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10749 flower src_mac 02:24:c3:89:3b:c5 dst_mac 02:5e:60:a4:63:c0 src_ip 30.20.112.168 dst_ip 64.64.154.145 ip_proto icmp code 4 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10750 flower src_mac 02:67:e7:f0:35:9d dst_mac 02:d7:bb:94:89:e8 vlan_id 3823 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10751 flower src_mac 02:7b:16:91:78:3e dst_mac 02:cb:56:9b:4f:d3 src_ip 84.2.85.240 dst_ip 19.122.77.127 ip_proto icmp code 136 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10752 flower src_mac 02:bd:77:d1:48:10 dst_mac 02:84:69:49:01:12 vlan_id 3407 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10753 flower src_mac 02:cf:6d:ef:7f:8e dst_mac 02:25:10:da:06:2e src_ip 122.187.90.16 dst_ip 110.209.175.135 ip_proto udp src_port 31731 dst_port 31234 action trap && tc filter add dev swp1 ingress protocol ip pref 10754 flower src_mac 02:47:ac:2d:24:50 dst_mac 02:f1:5b:e2:ff:cc src_ip 102.125.178.56 dst_ip 103.198.27.105 ip_proto icmp code 218 type 18 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10755 flower src_mac 02:bb:97:6a:aa:94 dst_mac 02:f8:81:c6:ec:10 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10756 flower src_mac 02:eb:5f:ae:22:0c dst_mac 02:93:6b:15:88:82 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10757 flower src_mac 02:22:02:62:4a:0b dst_mac 02:04:38:59:13:bc src_ip 86.252.150.3 dst_ip 42.79.13.33 ip_proto tcp src_port 63310 dst_port 47431 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10758 flower src_mac 02:18:de:5d:2a:4d dst_mac 02:30:43:ca:03:f8 vlan_id 209 vlan_ethtype ipv4 src_ip 21.88.88.58 dst_ip 75.64.140.49 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10759 flower src_mac 02:9c:98:ba:c6:ff dst_mac 02:9e:ca:2d:dc:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10760 flower src_mac 02:18:d7:3c:16:c7 dst_mac 02:1e:d9:33:4f:40 vlan_id 602 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10761 flower src_mac 02:18:bc:9e:37:dd dst_mac 02:39:bf:76:bd:b4 src_ip 64.142.41.132 dst_ip 96.249.196.95 action pass && tc filter add dev swp1 ingress protocol ip pref 10762 flower src_mac 02:9b:81:d5:4e:57 dst_mac 02:af:2b:a3:ae:bd src_ip 99.186.33.67 dst_ip 86.38.87.24 ip_proto udp src_port 31614 dst_port 50882 action drop && tc filter add dev swp1 ingress protocol ip pref 10763 flower src_mac 02:3d:e9:7e:59:76 dst_mac 02:c5:cc:dd:48:c3 src_ip 107.237.170.161 dst_ip 95.226.213.210 action pass && tc filter add dev swp1 ingress protocol ip pref 10764 flower src_mac 02:99:85:8f:eb:ab dst_mac 02:7b:68:1c:92:40 src_ip 120.93.24.232 dst_ip 124.22.43.2 ip_proto udp src_port 13283 dst_port 23603 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10765 flower src_mac 02:95:44:86:fc:d1 dst_mac 02:31:d3:51:fc:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10766 flower src_mac 02:e3:b8:89:70:e5 dst_mac 02:03:bf:4d:7b:a3 vlan_id 2266 vlan_ethtype ipv4 src_ip 63.51.251.117 dst_ip 117.99.128.191 ip_proto udp src_port 5951 dst_port 33636 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10767 flower src_mac 02:ae:9c:db:ff:e7 dst_mac 02:f2:69:9e:75:c0 vlan_id 3791 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10768 flower src_mac 02:1f:7d:bc:df:9b dst_mac 02:f3:70:49:e1:1d src_ip 87.206.123.202 dst_ip 92.255.84.215 ip_proto tcp src_port 40337 dst_port 64814 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10769 flower src_mac 02:a1:a6:e4:e4:03 dst_mac 02:62:63:6e:24:c9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10770 flower src_mac 02:fb:3e:67:2e:05 dst_mac 02:8c:75:91:c4:3a vlan_id 1584 vlan_ethtype ip src_ip 106.128.203.55 dst_ip 23.208.71.186 ip_proto udp src_port 56124 dst_port 20655 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10771 flower src_mac 02:47:d9:50:c0:85 dst_mac 02:f0:49:5f:e7:6d vlan_id 3960 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10772 flower src_mac 02:61:cb:27:22:77 dst_mac 02:67:8c:a8:da:21 src_ip 61.228.181.81 dst_ip 106.190.34.108 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10773 flower src_mac 02:10:4d:7b:b9:df dst_mac 02:d9:3f:be:b4:98 vlan_id 1842 vlan_ethtype ipv4 src_ip 61.83.39.189 dst_ip 125.97.88.242 ip_proto tcp src_port 13134 dst_port 56533 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10774 flower src_mac 02:57:87:ff:5a:a8 dst_mac 02:fa:fa:e3:6d:72 vlan_id 1086 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10775 flower src_mac 02:0f:3f:64:c7:17 dst_mac 02:c6:d6:74:39:d3 vlan_id 3106 vlan_ethtype 0x0800 src_ip 108.103.142.4 dst_ip 74.31.19.63 action trap && tc filter add dev swp1 ingress protocol ip pref 10776 flower src_mac 02:27:ac:ae:6f:1f dst_mac 02:55:d3:89:f7:a3 src_ip 92.16.193.14 dst_ip 85.103.78.153 ip_proto icmp code 151 type 18 action drop && tc filter add dev swp1 ingress protocol ip pref 10777 flower src_mac 02:a5:25:aa:f8:1e dst_mac 02:39:bf:36:e1:0e src_ip 55.126.231.14 dst_ip 42.180.237.7 ip_proto tcp src_port 35935 dst_port 11142 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10778 flower src_mac 02:0d:87:a8:df:b7 dst_mac 02:03:3d:fc:01:03 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10779 flower src_mac 02:d3:5a:02:ba:85 dst_mac 02:11:ce:d4:46:18 vlan_id 90 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10780 flower src_mac 02:c4:90:39:04:bf dst_mac 02:18:3d:dd:b3:fe action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10781 flower src_mac 02:a6:a5:ae:3c:57 dst_mac 02:34:b2:82:20:4e src_ip 117.239.13.218 dst_ip 79.161.115.147 ip_proto icmp code 220 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10782 flower src_mac 02:c2:6e:30:d3:3f dst_mac 02:65:2f:d4:45:12 vlan_id 2300 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10783 flower src_mac 02:14:a7:48:50:62 dst_mac 02:c9:83:1c:25:ea action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10784 flower src_mac 02:32:c6:9e:05:26 dst_mac 02:c1:4a:26:5c:7c vlan_id 2785 vlan_ethtype ip src_ip 70.154.179.216 dst_ip 66.118.71.234 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10785 flower src_mac 02:96:bf:f3:f0:e2 dst_mac 02:a0:cb:f5:e5:a8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10786 flower src_mac 02:4e:23:13:8f:2a dst_mac 02:38:17:6c:e4:5c vlan_id 2438 vlan_ethtype ip src_ip 24.201.241.104 dst_ip 35.150.54.163 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:c2:2c:f7:a5:67 dst_mac 02:1f:7c:6a:92:68 vlan_id 3148 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10788 flower src_mac 02:f1:d4:1e:6e:45 dst_mac 02:f5:df:f1:2c:51 vlan_id 793 vlan_ethtype ip src_ip 114.163.198.57 dst_ip 79.50.164.137 ip_proto tcp src_port 61566 dst_port 43576 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10789 flower src_mac 02:c2:dd:9e:5f:4e dst_mac 02:5c:61:32:33:e6 vlan_id 2500 vlan_ethtype ipv4 src_ip 85.9.101.52 dst_ip 57.7.82.244 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10790 flower src_mac 02:3f:5e:ff:bb:56 dst_mac 02:e4:0a:b5:de:af vlan_id 108 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10791 flower src_mac 02:22:e2:23:31:1e dst_mac 02:72:be:06:b9:cb vlan_id 2548 vlan_ethtype ip src_ip 91.36.1.51 dst_ip 59.18.47.214 ip_proto tcp src_port 47404 dst_port 23669 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10792 flower src_mac 02:cc:bb:78:8a:bc dst_mac 02:80:8b:d6:3b:3b action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10793 flower src_mac 02:68:74:59:e4:27 dst_mac 02:88:36:bc:9d:bf src_ip 72.115.184.176 dst_ip 75.146.40.128 ip_proto udp src_port 50325 dst_port 65128 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10794 flower src_mac 02:a9:76:c6:ef:4d dst_mac 02:54:5f:79:49:8d action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10795 flower src_mac 02:a7:9c:39:6c:0f dst_mac 02:2f:3c:bc:d8:8e src_ip 125.34.133.134 dst_ip 58.31.216.189 ip_proto udp src_port 49970 dst_port 5008 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10796 flower src_mac 02:95:4d:2a:60:fa dst_mac 02:7e:0e:8c:db:a5 vlan_id 2464 vlan_ethtype ip src_ip 92.150.176.29 dst_ip 126.8.155.2 ip_proto udp src_port 18545 dst_port 46969 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10797 flower src_mac 02:30:a1:e1:3e:1f dst_mac 02:1a:25:97:84:69 vlan_id 4006 vlan_ethtype 0x0800 src_ip 19.77.229.64 dst_ip 21.178.146.212 ip_proto udp src_port 48337 dst_port 10655 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10798 flower src_mac 02:be:fd:a2:5d:7c dst_mac 02:2c:fe:59:78:f0 action pass && tc filter add dev swp1 ingress protocol ip pref 10799 flower src_mac 02:cc:4c:e5:77:bf dst_mac 02:5a:08:59:e1:65 src_ip 69.230.24.33 dst_ip 19.87.62.158 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 10400 flower src_mac 02:90:9e:81:bd:3f dst_mac 02:d9:52:66:e2:70 vlan_id 3946 vlan_ethtype ip src_ip 86.219.105.228 dst_ip 32.34.226.17 ip_proto udp src_port 16798 dst_port 18378 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10401 flower src_mac 02:9c:27:a6:14:de dst_mac 02:c6:19:e4:8d:cc vlan_id 3491 vlan_ethtype ipv4 src_ip 120.239.12.26 dst_ip 117.145.126.71 ip_proto tcp src_port 42355 dst_port 48028 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10402 flower src_mac 02:eb:0a:4d:67:74 dst_mac 02:88:ac:a8:97:f6 vlan_id 2664 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10403 flower src_mac 02:ad:ac:a2:2f:95 dst_mac 02:4d:26:db:c3:37 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10404 flower src_mac 02:f5:c6:f7:b5:09 dst_mac 02:50:27:96:2a:56 vlan_id 4024 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10405 flower src_mac 02:00:d1:4d:cd:3f dst_mac 02:14:22:9f:70:7e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10406 flower src_mac 02:5a:70:ee:01:29 dst_mac 02:9c:59:6a:27:41 vlan_id 1494 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10407 flower src_mac 02:87:0d:23:89:b7 dst_mac 02:ec:cb:67:2d:0f vlan_id 2 vlan_ethtype 0x0800 src_ip 78.221.163.240 dst_ip 111.51.34.13 ip_proto udp src_port 22236 dst_port 20855 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10408 flower src_mac 02:bf:50:b2:a4:c0 dst_mac 02:76:94:c2:59:20 vlan_id 829 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10409 flower src_mac 02:e5:6f:9e:8e:3b dst_mac 02:10:01:ae:9d:f5 src_ip 33.52.1.43 dst_ip 70.96.99.208 ip_proto tcp src_port 31779 dst_port 64798 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10410 flower src_mac 02:09:f1:1a:80:16 dst_mac 02:07:97:5a:94:f3 vlan_id 2667 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10411 flower src_mac 02:34:5d:10:9c:a0 dst_mac 02:15:3c:26:22:56 src_ip 86.212.175.77 dst_ip 103.44.45.211 ip_proto tcp src_port 47245 dst_port 40889 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10412 flower src_mac 02:8d:23:db:08:f3 dst_mac 02:d1:48:dc:a5:f6 vlan_id 1173 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10413 flower src_mac 02:33:c3:aa:e4:b2 dst_mac 02:2b:46:4f:da:62 vlan_id 2282 vlan_ethtype ip src_ip 126.211.199.232 dst_ip 96.228.75.59 action pass && tc filter add dev swp1 ingress protocol ip pref 10414 flower src_mac 02:a4:49:dc:4f:57 dst_mac 02:a9:c1:12:4e:7c src_ip 46.235.162.184 dst_ip 99.218.199.49 ip_proto icmp code 227 type 0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10415 flower src_mac 02:5f:71:11:43:33 dst_mac 02:82:e3:84:41:a7 vlan_id 222 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10416 flower src_mac 02:09:ac:91:1e:95 dst_mac 02:50:47:47:49:39 src_ip 41.25.244.210 dst_ip 33.191.190.231 ip_proto tcp src_port 44303 dst_port 9637 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10417 flower src_mac 02:5e:6d:54:1a:35 dst_mac 02:0f:3d:60:44:fa action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10418 flower src_mac 02:7f:bb:89:e1:03 dst_mac 02:c8:5c:d4:39:e3 action trap && tc filter add dev swp1 ingress protocol ip pref 10419 flower src_mac 02:39:e0:7b:a1:38 dst_mac 02:02:27:55:54:81 src_ip 80.225.233.165 dst_ip 103.37.198.214 ip_proto tcp src_port 27383 dst_port 11929 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10420 flower src_mac 02:0e:e7:df:cc:03 dst_mac 02:7b:01:2e:ae:ad vlan_id 1768 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10421 flower src_mac 02:3f:31:38:30:df dst_mac 02:28:f0:b2:1b:c2 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10422 flower src_mac 02:6b:c4:34:d1:11 dst_mac 02:16:5a:08:59:e1 src_ip 47.92.11.140 dst_ip 79.152.171.135 ip_proto icmp code 172 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10423 flower src_mac 02:60:48:43:7c:14 dst_mac 02:03:0b:9c:73:f8 vlan_id 3204 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10424 flower src_mac 02:df:2e:44:27:98 dst_mac 02:dc:33:85:31:da src_ip 14.50.13.104 dst_ip 126.206.83.216 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10425 flower src_mac 02:72:e6:66:cd:60 dst_mac 02:6a:85:77:52:13 vlan_id 1249 vlan_ethtype 0x0800 src_ip 16.127.241.127 dst_ip 57.163.19.147 action drop && tc filter add dev swp1 ingress protocol ip pref 10426 flower src_mac 02:4e:4f:72:c2:8e dst_mac 02:e4:c2:bd:aa:88 src_ip 46.174.72.221 dst_ip 36.42.238.142 ip_proto icmp code 157 type 3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10427 flower src_mac 02:27:65:c5:a7:67 dst_mac 02:4c:75:81:47:29 vlan_id 199 vlan_ethtype 0x0800 src_ip 26.87.33.201 dst_ip 55.46.231.134 ip_proto tcp src_port 22141 dst_port 21080 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:21:14:64:ef:eb dst_mac 02:30:4f:68:cf:fb vlan_id 1640 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10429 flower src_mac 02:7b:a5:55:b9:1f dst_mac 02:83:6e:51:55:97 action drop && tc filter add dev swp1 ingress protocol ip pref 10430 flower src_mac 02:c4:dc:b5:41:c7 dst_mac 02:c0:5b:06:39:24 src_ip 91.165.227.98 dst_ip 57.12.89.165 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10431 flower src_mac 02:a6:fd:32:61:08 dst_mac 02:97:97:11:52:7e action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10432 flower src_mac 02:50:7c:9e:80:ea dst_mac 02:61:c2:73:3f:af src_ip 112.93.211.99 dst_ip 29.67.245.161 ip_proto udp src_port 48235 dst_port 38047 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10433 flower src_mac 02:cb:48:16:87:e2 dst_mac 02:75:55:47:48:81 vlan_id 494 vlan_ethtype 0x0800 src_ip 68.29.246.76 dst_ip 102.103.191.228 ip_proto udp src_port 8026 dst_port 646 action drop && tc filter add dev swp1 ingress protocol ip pref 10434 flower src_mac 02:98:c1:09:9e:e4 dst_mac 02:13:e4:b3:99:42 src_ip 54.217.93.79 dst_ip 52.103.96.219 ip_proto udp src_port 16347 dst_port 47766 action pass && tc filter add dev swp1 ingress protocol ip pref 10435 flower src_mac 02:1e:59:8b:f5:f4 dst_mac 02:cc:9b:e1:06:b0 src_ip 34.85.63.59 dst_ip 109.164.244.60 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10436 flower src_mac 02:86:89:8f:83:72 dst_mac 02:22:d1:21:63:3f vlan_id 77 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10437 flower src_mac 02:82:c6:22:b0:9a dst_mac 02:ee:d1:d3:ab:05 vlan_id 1244 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10438 flower src_mac 02:6a:fa:4b:77:91 dst_mac 02:e5:e2:32:28:6a src_ip 56.133.236.144 dst_ip 86.59.171.173 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10439 flower src_mac 02:d3:1d:69:b7:2c dst_mac 02:86:b2:c1:d7:88 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10440 flower src_mac 02:12:19:dd:47:6d dst_mac 02:d7:ad:7e:5f:43 vlan_id 644 vlan_ethtype ipv4 src_ip 76.57.149.146 dst_ip 21.109.172.50 ip_proto udp src_port 55290 dst_port 35614 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10441 flower src_mac 02:90:6a:2f:b0:68 dst_mac 02:11:bf:98:06:ea vlan_id 4000 vlan_ethtype ip src_ip 61.223.192.6 dst_ip 77.82.158.61 ip_proto udp src_port 61993 dst_port 59954 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10442 flower src_mac 02:ed:20:72:2f:c8 dst_mac 02:2a:9e:f7:ae:1e vlan_id 2788 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10443 flower src_mac 02:43:42:fa:c8:6f dst_mac 02:5f:67:c3:19:12 vlan_id 92 vlan_ethtype 0x0800 src_ip 38.69.80.197 dst_ip 29.253.100.122 ip_proto udp src_port 41198 dst_port 29081 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:a6:a9:ce:c1:12 dst_mac 02:fa:42:86:b4:02 vlan_id 2033 vlan_ethtype ip src_ip 123.248.235.175 dst_ip 37.139.209.12 ip_proto udp src_port 46535 dst_port 23736 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10445 flower src_mac 02:94:d4:da:0e:fb dst_mac 02:0d:cb:60:ac:9c action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10446 flower src_mac 02:cc:a1:5a:64:0c dst_mac 02:ca:15:02:aa:ce src_ip 55.82.242.167 dst_ip 39.30.7.132 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10447 flower src_mac 02:f7:9c:82:ac:b0 dst_mac 02:13:47:ca:88:02 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10448 flower src_mac 02:df:8c:3e:16:31 dst_mac 02:1c:d8:5a:72:47 vlan_id 3549 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:4a:27:cc:d6:b3 dst_mac 02:81:b9:02:93:d9 vlan_id 1090 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10450 flower src_mac 02:33:53:07:8f:96 dst_mac 02:92:fc:96:84:af vlan_id 2232 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10451 flower src_mac 02:a8:73:08:22:18 dst_mac 02:8d:94:92:2f:50 src_ip 19.114.92.150 dst_ip 81.62.130.64 ip_proto udp src_port 19718 dst_port 43922 action trap && tc filter add dev swp1 ingress protocol ip pref 10452 flower src_mac 02:46:c9:f7:77:d7 dst_mac 02:68:66:63:f0:ce src_ip 94.172.246.98 dst_ip 95.157.88.138 ip_proto icmp code 116 type 4 action pass && tc filter add dev swp1 ingress protocol ip pref 10453 flower src_mac 02:3b:42:0e:24:db dst_mac 02:4f:83:f6:fa:fa src_ip 39.131.160.24 dst_ip 97.29.149.26 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10454 flower src_mac 02:20:27:ac:06:76 dst_mac 02:6d:0f:24:d0:5b vlan_id 788 vlan_ethtype 0x0800 src_ip 28.25.159.131 dst_ip 54.121.253.128 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10455 flower src_mac 02:1a:27:c9:a3:f8 dst_mac 02:dc:03:bf:6f:48 src_ip 97.211.202.172 dst_ip 38.147.56.66 ip_proto tcp src_port 13423 dst_port 9502 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10456 flower src_mac 02:79:87:34:16:70 dst_mac 02:87:02:45:b6:21 vlan_id 3998 vlan_ethtype ipv4 src_ip 125.91.138.217 dst_ip 35.8.101.78 ip_proto udp src_port 604 dst_port 5433 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10457 flower src_mac 02:64:50:5f:b7:9a dst_mac 02:11:28:5e:12:0e vlan_id 1916 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10458 flower src_mac 02:e1:3b:23:5b:51 dst_mac 02:3e:65:87:3f:7a vlan_id 4045 vlan_ethtype ipv4 src_ip 125.188.20.65 dst_ip 47.151.3.107 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10459 flower src_mac 02:57:14:ac:70:6a dst_mac 02:3d:2d:1e:b7:79 vlan_id 3210 vlan_ethtype ipv4 src_ip 23.228.11.75 dst_ip 19.186.39.90 ip_proto udp src_port 62854 dst_port 35145 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10460 flower src_mac 02:69:1c:92:12:8d dst_mac 02:40:38:f7:b7:ad vlan_id 3413 vlan_ethtype ip src_ip 56.209.93.156 dst_ip 23.178.10.230 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10461 flower src_mac 02:c8:c7:17:b3:e0 dst_mac 02:cb:20:29:1d:9e vlan_id 532 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10462 flower src_mac 02:82:44:d6:5f:1a dst_mac 02:42:64:7d:d2:ed src_ip 117.62.146.26 dst_ip 121.109.187.233 ip_proto udp src_port 53242 dst_port 43550 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10463 flower src_mac 02:ba:8f:91:72:55 dst_mac 02:19:f9:59:fb:b1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10464 flower src_mac 02:da:94:46:04:d5 dst_mac 02:69:f2:ac:ea:47 vlan_id 2066 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10465 flower src_mac 02:6e:c5:f4:cc:2c dst_mac 02:a4:0d:23:77:95 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10466 flower src_mac 02:31:4b:1f:b2:50 dst_mac 02:5b:29:ce:38:e2 src_ip 92.160.132.42 dst_ip 124.251.186.39 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10467 flower src_mac 02:ab:f3:dc:17:8c dst_mac 02:24:1a:ec:00:7a src_ip 88.91.170.108 dst_ip 38.142.82.221 ip_proto tcp src_port 3452 dst_port 36236 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10468 flower src_mac 02:48:2c:6d:f5:e7 dst_mac 02:17:54:2d:12:24 vlan_id 1895 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10469 flower src_mac 02:c9:c6:b1:b7:51 dst_mac 02:5c:48:2b:7d:ac vlan_id 1922 vlan_ethtype ip src_ip 117.36.93.197 dst_ip 67.123.155.2 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10470 flower src_mac 02:45:31:0e:a1:9c dst_mac 02:c8:4f:e5:fd:05 src_ip 76.37.118.99 dst_ip 112.219.5.122 ip_proto udp src_port 50118 dst_port 1404 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10471 flower src_mac 02:20:4d:de:d7:af dst_mac 02:ee:ae:28:f7:fe vlan_id 3240 vlan_ethtype ipv4 src_ip 43.119.132.92 dst_ip 33.30.138.174 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10472 flower src_mac 02:20:13:6b:d1:d3 dst_mac 02:5d:fb:2a:12:08 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10473 flower src_mac 02:03:7a:a3:51:68 dst_mac 02:f0:3e:64:9d:15 vlan_id 2405 vlan_ethtype ipv4 src_ip 109.159.72.151 dst_ip 96.231.205.203 ip_proto tcp src_port 58108 dst_port 30764 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10474 flower src_mac 02:18:1d:5b:80:f8 dst_mac 02:d3:d0:c5:16:a9 vlan_id 3479 vlan_ethtype ip src_ip 46.211.124.247 dst_ip 78.2.51.122 ip_proto tcp src_port 42078 dst_port 61951 action trap && tc filter add dev swp1 ingress protocol ip pref 10475 flower src_mac 02:fd:cf:e7:79:2a dst_mac 02:32:45:f8:01:1a src_ip 17.163.44.195 dst_ip 98.136.117.128 ip_proto icmp code 210 type 0 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10476 flower src_mac 02:b6:b8:6b:89:cd dst_mac 02:ff:65:4c:0e:20 src_ip 70.143.150.93 dst_ip 26.244.134.236 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10477 flower src_mac 02:17:21:84:31:1a dst_mac 02:ae:1a:b8:d0:04 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10478 flower src_mac 02:31:02:99:e7:8b dst_mac 02:75:bf:03:4a:fd vlan_id 1803 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10479 flower src_mac 02:e0:d4:42:16:20 dst_mac 02:55:f2:15:42:2c vlan_id 626 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10480 flower src_mac 02:bb:f8:40:b0:20 dst_mac 02:e9:ea:13:fe:24 vlan_id 3316 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10481 flower src_mac 02:4f:cc:20:2b:0d dst_mac 02:d7:7b:06:6e:9d vlan_id 1982 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10482 flower src_mac 02:b2:a8:f1:41:fc dst_mac 02:53:6c:33:8e:1f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10483 flower src_mac 02:f7:ce:5f:bb:bd dst_mac 02:28:4a:50:ff:45 vlan_id 265 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10484 flower src_mac 02:77:93:7d:df:79 dst_mac 02:bb:62:38:5d:3b vlan_id 1954 vlan_ethtype 0x0800 src_ip 65.168.200.59 dst_ip 82.130.182.67 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10485 flower src_mac 02:2f:fa:bd:e2:03 dst_mac 02:0d:9e:c3:7f:5e vlan_id 1154 vlan_ethtype ipv4 src_ip 73.19.89.52 dst_ip 83.122.48.152 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10486 flower src_mac 02:ff:cb:0e:87:53 dst_mac 02:a5:a5:9c:02:54 vlan_id 712 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10487 flower src_mac 02:e4:88:4e:22:bd dst_mac 02:f2:56:9a:ce:15 src_ip 98.235.125.1 dst_ip 55.168.247.8 ip_proto tcp src_port 56950 dst_port 21618 action drop && tc filter add dev swp1 ingress protocol ip pref 10488 flower src_mac 02:41:87:6d:28:13 dst_mac 02:d6:69:d7:de:5a src_ip 24.204.138.145 dst_ip 117.139.34.233 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10489 flower src_mac 02:25:a5:58:68:8e dst_mac 02:82:60:f4:88:44 vlan_id 1124 vlan_ethtype ip src_ip 104.51.116.19 dst_ip 60.197.88.22 ip_proto udp src_port 6722 dst_port 50757 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10490 flower src_mac 02:e0:84:8f:b5:56 dst_mac 02:d0:aa:9b:f1:d1 vlan_id 3021 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10491 flower src_mac 02:6f:54:c8:08:40 dst_mac 02:0a:a2:de:2f:99 vlan_id 1419 vlan_ethtype ip src_ip 49.153.42.247 dst_ip 67.118.201.54 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10492 flower src_mac 02:1f:3a:56:ca:94 dst_mac 02:aa:80:5e:aa:70 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10493 flower src_mac 02:ae:16:47:a0:2a dst_mac 02:ff:f5:b8:8a:05 vlan_id 2433 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10494 flower src_mac 02:c7:6d:6f:2f:df dst_mac 02:2a:4e:39:b4:c9 vlan_id 3140 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10495 flower src_mac 02:ae:dc:a0:f1:e3 dst_mac 02:28:51:cd:1d:13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10496 flower src_mac 02:b1:c4:e3:9b:5c dst_mac 02:2c:d1:3d:bb:6d vlan_id 3960 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10497 flower src_mac 02:82:76:a3:f9:31 dst_mac 02:47:8a:3c:02:f7 vlan_id 616 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10498 flower src_mac 02:a8:bd:3a:78:73 dst_mac 02:93:db:8c:15:c2 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10499 flower src_mac 02:b2:b6:33:f4:e7 dst_mac 02:10:76:75:03:d0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10500 flower src_mac 02:5f:8b:4a:4e:60 dst_mac 02:5d:f2:d8:f7:0f vlan_id 3897 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10501 flower src_mac 02:59:3a:a3:ca:79 dst_mac 02:44:90:99:5d:e4 vlan_id 2275 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10502 flower src_mac 02:33:d5:f8:d7:4d dst_mac 02:77:ae:ce:7b:6e src_ip 95.115.28.109 dst_ip 94.247.172.151 ip_proto udp src_port 20079 dst_port 12327 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10503 flower src_mac 02:06:98:d6:32:6f dst_mac 02:cd:91:24:fc:c8 vlan_id 3721 vlan_ethtype 0x0800 src_ip 59.130.247.243 dst_ip 95.71.8.144 action pass && tc filter add dev swp1 ingress protocol ip pref 10504 flower src_mac 02:7c:9a:78:27:99 dst_mac 02:c6:9b:7b:ef:25 src_ip 45.108.94.40 dst_ip 50.133.0.117 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10505 flower src_mac 02:fc:c7:1d:a2:d8 dst_mac 02:59:9e:56:4a:f1 vlan_id 3312 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10506 flower src_mac 02:bf:23:9a:17:9e dst_mac 02:e2:11:7c:f7:96 vlan_id 2128 vlan_ethtype ipv4 src_ip 36.161.79.4 dst_ip 75.90.37.47 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10507 flower src_mac 02:74:d0:fc:11:41 dst_mac 02:60:6b:32:b0:3b vlan_id 2325 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10508 flower src_mac 02:f3:b7:57:ff:0c dst_mac 02:97:a5:18:0b:b3 action pass && tc filter add dev swp1 ingress protocol ip pref 10509 flower src_mac 02:f4:46:db:63:75 dst_mac 02:47:d4:8c:00:3a src_ip 38.189.158.166 dst_ip 112.203.217.122 ip_proto udp src_port 43885 dst_port 59398 action drop && tc filter add dev swp1 ingress protocol ip pref 10510 flower src_mac 02:9b:ee:25:ec:6e dst_mac 02:18:a8:7f:c8:fd src_ip 103.197.166.87 dst_ip 40.45.186.29 ip_proto icmp code 253 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10511 flower src_mac 02:55:2f:10:61:55 dst_mac 02:4c:a0:51:6a:d8 vlan_id 3409 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10512 flower src_mac 02:08:60:e7:b0:a5 dst_mac 02:11:ee:4a:2e:a0 vlan_id 3973 vlan_ethtype 0x0800 src_ip 86.35.156.2 dst_ip 17.92.39.2 ip_proto udp src_port 56150 dst_port 5424 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10513 flower src_mac 02:0b:65:12:60:b2 dst_mac 02:f3:bd:2d:8b:18 vlan_id 3051 vlan_ethtype 0x0800 src_ip 69.145.96.197 dst_ip 66.196.95.129 ip_proto udp src_port 52041 dst_port 19443 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10514 flower src_mac 02:2a:1a:2f:a2:b1 dst_mac 02:e0:5a:0e:8d:cb action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10515 flower src_mac 02:db:7f:dc:b3:b1 dst_mac 02:35:b2:d0:03:56 vlan_id 1370 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10516 flower src_mac 02:7b:87:44:03:50 dst_mac 02:67:9d:b8:c7:7c src_ip 18.69.249.238 dst_ip 41.141.18.171 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10517 flower src_mac 02:57:e4:98:cf:fd dst_mac 02:cc:0f:7f:4d:5f vlan_id 2023 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10518 flower src_mac 02:25:7f:18:d8:e9 dst_mac 02:57:5c:84:fe:61 src_ip 59.181.95.197 dst_ip 21.89.20.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10519 flower src_mac 02:52:a8:17:da:41 dst_mac 02:92:4e:b9:57:69 vlan_id 1079 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:39:59:49:7b:f1 dst_mac 02:d3:8c:11:69:cf vlan_id 1944 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10521 flower src_mac 02:05:7e:92:06:a6 dst_mac 02:ca:4e:f3:f4:9b src_ip 97.202.128.155 dst_ip 60.26.233.70 ip_proto udp src_port 36942 dst_port 54706 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10522 flower src_mac 02:12:11:2a:ad:ff dst_mac 02:f5:e8:76:e6:ff src_ip 104.92.218.197 dst_ip 124.115.40.222 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10523 flower src_mac 02:d9:d5:43:8f:86 dst_mac 02:f7:09:7a:22:54 action pass && tc filter add dev swp1 ingress protocol ip pref 10524 flower src_mac 02:e1:b4:0c:e1:37 dst_mac 02:c4:15:67:a6:0d src_ip 101.216.70.6 dst_ip 49.173.225.197 ip_proto tcp src_port 22078 dst_port 55471 action pass && tc filter add dev swp1 ingress protocol ip pref 10525 flower src_mac 02:0d:91:3f:6c:7d dst_mac 02:6d:68:d9:58:21 src_ip 121.74.84.22 dst_ip 58.196.218.14 ip_proto tcp src_port 49416 dst_port 48566 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10526 flower src_mac 02:6b:78:ca:9b:a8 dst_mac 02:ac:68:1b:1e:3a vlan_id 1804 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10527 flower src_mac 02:1c:4e:3f:fb:b8 dst_mac 02:54:13:02:06:36 vlan_id 3323 vlan_ethtype ipv4 src_ip 107.251.89.68 dst_ip 65.42.167.187 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10528 flower src_mac 02:03:e6:bc:41:5d dst_mac 02:d4:6a:5a:d9:0a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10529 flower src_mac 02:74:3f:e5:58:ea dst_mac 02:ee:f2:5d:93:c2 vlan_id 2088 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10530 flower src_mac 02:18:2f:2f:fa:ec dst_mac 02:4c:b7:d1:c5:06 vlan_id 2976 vlan_ethtype 0x0800 src_ip 99.213.152.20 dst_ip 64.86.111.176 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10531 flower src_mac 02:88:7b:78:58:a4 dst_mac 02:60:60:4f:a5:e4 vlan_id 217 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10532 flower src_mac 02:53:fb:38:82:ef dst_mac 02:ce:4d:fc:b1:23 src_ip 80.70.193.221 dst_ip 30.194.195.155 ip_proto udp src_port 26020 dst_port 51853 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10533 flower src_mac 02:e8:12:ef:b4:66 dst_mac 02:cf:3c:39:33:91 src_ip 69.237.210.42 dst_ip 24.248.84.92 ip_proto icmp code 211 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10534 flower src_mac 02:26:06:32:85:04 dst_mac 02:2b:ad:6b:5a:3b vlan_id 3316 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10535 flower src_mac 02:72:8c:2b:0f:97 dst_mac 02:af:02:d9:fd:c8 vlan_id 2400 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10536 flower src_mac 02:ea:cc:eb:ac:6a dst_mac 02:60:98:39:4f:e2 src_ip 34.58.50.124 dst_ip 106.72.228.43 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10537 flower src_mac 02:2d:42:18:a7:fa dst_mac 02:ba:f2:3f:eb:53 vlan_id 3559 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10538 flower src_mac 02:8d:bf:1c:48:29 dst_mac 02:05:9e:72:f4:74 vlan_id 2687 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10539 flower src_mac 02:3b:76:5f:ee:5e dst_mac 02:96:1c:8c:89:36 vlan_id 1392 vlan_ethtype 0x0800 src_ip 44.132.28.54 dst_ip 21.70.221.79 ip_proto tcp src_port 56374 dst_port 40799 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10540 flower src_mac 02:52:11:47:ae:b7 dst_mac 02:ac:11:e9:76:92 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10541 flower src_mac 02:d9:7f:0d:5f:04 dst_mac 02:35:ca:82:7d:3a vlan_id 2039 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10542 flower src_mac 02:73:dc:b1:cb:6f dst_mac 02:53:10:a6:70:3f src_ip 62.67.237.230 dst_ip 72.175.49.54 action trap && tc filter add dev swp1 ingress protocol ip pref 10543 flower src_mac 02:08:dc:e2:d0:ee dst_mac 02:ae:71:ac:70:64 src_ip 63.180.200.175 dst_ip 85.111.47.135 ip_proto udp src_port 37204 dst_port 18773 action trap && tc filter add dev swp1 ingress protocol ip pref 10544 flower src_mac 02:58:8c:2c:1d:c1 dst_mac 02:0f:67:2e:d7:1f src_ip 62.118.248.83 dst_ip 102.145.188.144 ip_proto icmp code 37 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10545 flower src_mac 02:3b:00:e2:6f:d7 dst_mac 02:b5:1a:30:f1:52 vlan_id 3075 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10546 flower src_mac 02:18:18:3b:c9:00 dst_mac 02:c3:31:10:2f:46 vlan_id 1437 vlan_ethtype ipv4 src_ip 27.206.91.185 dst_ip 118.197.225.213 ip_proto udp src_port 24063 dst_port 62278 action drop && tc filter add dev swp1 ingress protocol ip pref 10547 flower src_mac 02:6b:82:61:76:0e dst_mac 02:94:52:1a:d0:c5 src_ip 94.140.166.69 dst_ip 95.83.28.156 ip_proto tcp src_port 32343 dst_port 5633 action pass && tc filter add dev swp1 ingress protocol ip pref 10548 flower src_mac 02:7d:91:2a:8f:a2 dst_mac 02:5f:3e:ee:1f:6b src_ip 36.117.102.223 dst_ip 53.94.76.121 ip_proto udp src_port 17308 dst_port 14717 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10549 flower src_mac 02:d6:22:be:31:62 dst_mac 02:89:01:3a:16:ba vlan_id 2544 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10550 flower src_mac 02:2f:a6:7f:d0:31 dst_mac 02:dc:12:e9:12:b3 src_ip 60.132.215.165 dst_ip 67.75.151.26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10551 flower src_mac 02:42:8e:eb:ca:3a dst_mac 02:52:d2:f4:86:ee vlan_id 1803 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10552 flower src_mac 02:33:91:d1:59:c2 dst_mac 02:79:3e:a8:a7:54 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10553 flower src_mac 02:45:a0:64:9e:e7 dst_mac 02:03:f9:cb:52:41 vlan_id 1415 vlan_ethtype ip src_ip 16.236.237.223 dst_ip 49.173.211.213 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10554 flower src_mac 02:35:5b:89:82:f0 dst_mac 02:2d:f2:b2:8d:df vlan_id 1468 vlan_ethtype ipv4 src_ip 41.116.171.187 dst_ip 105.252.129.3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10555 flower src_mac 02:8d:93:70:2d:6d dst_mac 02:ca:0a:14:5d:3f vlan_id 2929 vlan_ethtype 0x0800 src_ip 14.140.216.54 dst_ip 110.226.29.116 ip_proto tcp src_port 65281 dst_port 28924 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10556 flower src_mac 02:85:a8:fb:27:f1 dst_mac 02:c6:f3:69:a4:0d vlan_id 20 vlan_ethtype 0x0800 src_ip 60.114.83.41 dst_ip 16.143.176.223 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10557 flower src_mac 02:6b:8c:64:04:4e dst_mac 02:c3:10:c2:f9:af action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10558 flower src_mac 02:2e:c4:9e:cb:3e dst_mac 02:da:5e:e1:1c:b1 vlan_id 3156 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10559 flower src_mac 02:85:ef:04:96:dc dst_mac 02:cc:b9:79:82:ff src_ip 76.223.4.104 dst_ip 56.131.108.132 ip_proto udp src_port 54653 dst_port 63858 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10560 flower src_mac 02:78:fd:b4:f9:a0 dst_mac 02:5d:9e:42:e7:e5 vlan_id 1831 vlan_ethtype ip src_ip 56.182.214.7 dst_ip 13.200.36.167 ip_proto tcp src_port 30465 dst_port 39844 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10561 flower src_mac 02:ca:91:fd:18:b2 dst_mac 02:29:58:bb:99:34 vlan_id 3091 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10562 flower src_mac 02:91:ee:c1:ba:72 dst_mac 02:a5:c3:fd:24:85 src_ip 108.38.74.10 dst_ip 61.39.148.120 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10563 flower src_mac 02:33:3a:ab:3f:a0 dst_mac 02:5c:43:be:f3:04 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10564 flower src_mac 02:b7:31:3f:25:1c dst_mac 02:24:b2:17:6a:6b vlan_id 1251 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10565 flower src_mac 02:6b:4e:44:70:2f dst_mac 02:b5:db:b5:26:fc vlan_id 1985 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10566 flower src_mac 02:d4:a1:b4:d7:10 dst_mac 02:69:50:9c:30:ed vlan_id 405 vlan_ethtype ipv4 src_ip 29.234.156.193 dst_ip 59.45.16.203 ip_proto udp src_port 57108 dst_port 34398 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10567 flower src_mac 02:23:5e:ce:98:72 dst_mac 02:10:59:fb:2c:1e src_ip 51.211.193.79 dst_ip 32.246.132.110 ip_proto icmp code 205 type 11 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10568 flower src_mac 02:c6:05:a6:f1:55 dst_mac 02:5a:c8:bf:eb:b8 vlan_id 2631 vlan_ethtype ip src_ip 74.101.151.4 dst_ip 106.74.159.206 ip_proto udp src_port 22265 dst_port 20319 action trap && tc filter add dev swp1 ingress protocol ip pref 10569 flower src_mac 02:c5:a0:8a:28:d5 dst_mac 02:fb:6f:7d:5b:b1 src_ip 58.90.167.30 dst_ip 88.248.186.41 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10570 flower src_mac 02:30:1e:5b:2d:53 dst_mac 02:f8:51:c6:a7:23 vlan_id 2277 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10571 flower src_mac 02:16:a2:8d:ba:ad dst_mac 02:6e:4b:38:74:d4 vlan_id 2108 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10572 flower src_mac 02:80:f0:b1:fb:1f dst_mac 02:5c:69:59:a3:13 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10573 flower src_mac 02:7f:1f:d9:15:3c dst_mac 02:60:95:ef:81:56 vlan_id 3853 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10574 flower src_mac 02:1f:da:cf:46:e7 dst_mac 02:c9:ff:f5:56:f4 vlan_id 3851 vlan_ethtype ip src_ip 30.113.104.158 dst_ip 20.139.78.133 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10575 flower src_mac 02:8c:88:f4:92:d4 dst_mac 02:a4:ec:25:12:ac vlan_id 3182 vlan_ethtype 0x0800 src_ip 26.207.98.240 dst_ip 74.204.211.147 ip_proto udp src_port 18177 dst_port 62922 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:a4:fd:4d:d8:1d dst_mac 02:4b:a2:f8:f0:cd vlan_id 2744 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10577 flower src_mac 02:59:44:47:04:ec dst_mac 02:42:fe:aa:31:26 vlan_id 1241 vlan_ethtype ip src_ip 89.37.30.174 dst_ip 25.57.125.237 ip_proto tcp src_port 30976 dst_port 10298 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10578 flower src_mac 02:10:e4:b9:8c:c8 dst_mac 02:26:56:b9:c8:e0 src_ip 78.72.89.169 dst_ip 70.54.87.176 ip_proto udp src_port 12922 dst_port 50845 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10579 flower src_mac 02:04:fc:c9:44:bf dst_mac 02:42:cf:fa:86:65 vlan_id 873 vlan_ethtype ipv4 src_ip 22.73.246.229 dst_ip 86.236.56.241 ip_proto tcp src_port 40385 dst_port 60222 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10580 flower src_mac 02:ae:b5:2e:a3:ab dst_mac 02:20:0c:b2:83:ae action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10581 flower src_mac 02:dc:70:b9:5f:b4 dst_mac 02:8e:8d:dd:2b:11 vlan_id 3751 vlan_ethtype ip src_ip 23.175.211.120 dst_ip 28.139.47.189 ip_proto tcp src_port 34395 dst_port 52429 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10582 flower src_mac 02:3c:13:fe:46:eb dst_mac 02:06:73:5a:1c:e7 vlan_id 2371 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10583 flower src_mac 02:8e:0b:7b:98:40 dst_mac 02:6d:70:82:be:ae src_ip 57.249.134.63 dst_ip 18.249.187.49 ip_proto udp src_port 32875 dst_port 3219 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10584 flower src_mac 02:a7:4c:a9:40:ce dst_mac 02:3a:13:04:d1:02 vlan_id 1797 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10585 flower src_mac 02:ea:aa:08:1f:a2 dst_mac 02:92:7d:3d:90:33 src_ip 125.163.17.98 dst_ip 19.146.98.225 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10586 flower src_mac 02:0c:fc:b0:1f:bc dst_mac 02:63:d5:f7:81:a4 vlan_id 743 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10587 flower src_mac 02:6b:b7:45:16:ca dst_mac 02:98:0f:0a:9e:b6 vlan_id 1012 vlan_ethtype 0x0800 src_ip 22.31.184.102 dst_ip 49.40.98.47 ip_proto udp src_port 3914 dst_port 39286 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10588 flower src_mac 02:a0:e5:da:ae:80 dst_mac 02:04:bf:f2:f6:f4 vlan_id 1985 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10589 flower src_mac 02:10:9a:c3:2d:ce dst_mac 02:33:c7:03:19:15 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10590 flower src_mac 02:5d:88:c5:36:d5 dst_mac 02:b6:ad:9f:ce:1a action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10591 flower src_mac 02:2b:ea:5c:91:f7 dst_mac 02:5c:a2:38:47:30 src_ip 53.45.116.246 dst_ip 48.3.102.73 ip_proto icmp code 190 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10592 flower src_mac 02:9a:cd:84:71:2f dst_mac 02:16:fb:05:ac:3a vlan_id 2652 vlan_ethtype ipv4 src_ip 72.246.7.184 dst_ip 86.118.161.113 ip_proto udp src_port 16538 dst_port 30572 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10593 flower src_mac 02:d0:42:4d:b7:56 dst_mac 02:0e:a1:54:3c:35 vlan_id 1089 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10594 flower src_mac 02:02:c0:23:38:fb dst_mac 02:f1:5a:f8:ce:c2 src_ip 33.232.126.112 dst_ip 99.143.202.51 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10595 flower src_mac 02:2b:97:f3:3f:e1 dst_mac 02:bc:dc:e9:75:67 vlan_id 3460 vlan_ethtype 0x0800 src_ip 28.87.236.92 dst_ip 124.59.60.95 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10596 flower src_mac 02:02:82:ac:6c:cc dst_mac 02:0c:ec:69:73:53 vlan_id 1764 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10597 flower src_mac 02:23:ee:28:6d:f2 dst_mac 02:55:ed:71:1b:0f vlan_id 820 vlan_ethtype 0x0800 src_ip 50.74.73.200 dst_ip 27.240.67.224 ip_proto tcp src_port 14330 dst_port 19227 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10598 flower src_mac 02:3b:3b:47:17:89 dst_mac 02:4a:a8:47:94:4a vlan_id 982 vlan_ethtype 0x0800 src_ip 60.211.160.106 dst_ip 51.115.205.249 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10599 flower src_mac 02:05:4e:4f:08:78 dst_mac 02:bb:b0:60:fd:44 vlan_id 1474 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10600 flower src_mac 02:de:85:61:83:2e dst_mac 02:12:09:f4:61:f0 src_ip 67.145.240.217 dst_ip 76.161.125.236 ip_proto udp src_port 47276 dst_port 51395 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10601 flower src_mac 02:44:5d:6f:e9:a8 dst_mac 02:11:d8:1e:97:6b src_ip 72.55.250.140 dst_ip 118.164.91.249 ip_proto icmp code 188 type 15 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10602 flower src_mac 02:9e:6c:93:c1:d9 dst_mac 02:d5:55:a2:a3:ff vlan_id 1794 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10603 flower src_mac 02:93:9a:42:b7:2a dst_mac 02:37:1c:65:1c:c8 vlan_id 2657 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10604 flower src_mac 02:d3:75:3d:d4:d7 dst_mac 02:e1:0b:35:93:01 src_ip 72.79.244.36 dst_ip 64.66.232.136 ip_proto udp src_port 33202 dst_port 24248 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10605 flower src_mac 02:63:85:5c:d2:36 dst_mac 02:75:e8:c3:05:1b vlan_id 791 vlan_ethtype ipv4 src_ip 26.245.75.80 dst_ip 123.203.220.112 ip_proto tcp src_port 50101 dst_port 48755 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10606 flower src_mac 02:03:fc:57:f6:49 dst_mac 02:4a:e6:22:ce:49 action trap && tc filter add dev swp1 ingress protocol ip pref 10607 flower src_mac 02:7a:d9:eb:79:bc dst_mac 02:c2:8f:dd:9c:8e src_ip 72.61.16.88 dst_ip 21.255.14.78 ip_proto icmp code 192 type 14 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10608 flower src_mac 02:9d:88:ea:09:0b dst_mac 02:f1:40:10:3b:9c src_ip 58.20.67.35 dst_ip 49.107.76.185 ip_proto udp src_port 56338 dst_port 16095 action trap && tc filter add dev swp1 ingress protocol ip pref 10609 flower src_mac 02:c1:6f:38:f8:48 dst_mac 02:aa:73:a8:57:33 src_ip 24.223.229.148 dst_ip 23.49.11.18 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10610 flower src_mac 02:38:67:46:a9:c0 dst_mac 02:7d:b0:de:e6:18 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10611 flower src_mac 02:c4:19:15:cf:4a dst_mac 02:34:77:42:46:da vlan_id 3643 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10612 flower src_mac 02:b0:f6:cb:94:e0 dst_mac 02:65:82:f3:b3:ef src_ip 116.92.110.196 dst_ip 44.28.14.202 ip_proto udp src_port 23666 dst_port 4879 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10613 flower src_mac 02:56:e7:32:94:dd dst_mac 02:06:1c:5e:26:b1 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10614 flower src_mac 02:c7:1b:74:fa:3d dst_mac 02:40:a3:01:d7:b6 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10615 flower src_mac 02:9b:33:f0:f3:18 dst_mac 02:77:5b:24:90:87 src_ip 84.43.249.96 dst_ip 36.142.156.19 ip_proto icmp code 41 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10616 flower src_mac 02:96:41:f9:3b:70 dst_mac 02:b3:13:62:ac:69 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10617 flower src_mac 02:87:ef:85:ec:ee dst_mac 02:3f:5c:95:e7:0e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10618 flower src_mac 02:ad:2b:91:56:dd dst_mac 02:77:57:33:91:48 vlan_id 1373 vlan_ethtype ip src_ip 43.198.49.138 dst_ip 117.222.110.237 action pass && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:11:96:6d:bb:b9 dst_mac 02:80:66:d1:42:16 src_ip 86.225.51.76 dst_ip 61.53.65.216 ip_proto tcp src_port 13910 dst_port 33755 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10620 flower src_mac 02:a1:29:5a:59:36 dst_mac 02:d2:01:68:bf:61 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10621 flower src_mac 02:e6:99:d7:c3:11 dst_mac 02:ac:65:0b:73:c8 src_ip 48.1.1.112 dst_ip 104.184.123.56 ip_proto udp src_port 2148 dst_port 16826 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10622 flower src_mac 02:4e:dd:e2:db:93 dst_mac 02:af:a9:9b:82:14 src_ip 70.60.254.59 dst_ip 110.183.189.171 ip_proto udp src_port 887 dst_port 52326 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10623 flower src_mac 02:0b:2d:d8:cc:55 dst_mac 02:a5:ef:e8:3a:52 vlan_id 2945 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10624 flower src_mac 02:ae:a7:76:94:18 dst_mac 02:e5:95:31:96:fc vlan_id 490 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10625 flower src_mac 02:da:6e:91:98:ba dst_mac 02:50:d6:c7:d1:46 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10626 flower src_mac 02:88:40:a2:c9:0b dst_mac 02:7a:5b:6c:f9:2d vlan_id 1746 vlan_ethtype ipv4 src_ip 112.144.57.141 dst_ip 87.198.151.242 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10627 flower src_mac 02:54:91:48:07:e5 dst_mac 02:df:48:4f:41:56 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10628 flower src_mac 02:e0:9a:24:90:30 dst_mac 02:e6:82:96:33:9f vlan_id 533 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10629 flower src_mac 02:b4:db:06:52:b6 dst_mac 02:5a:79:f2:cf:7e action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10630 flower src_mac 02:02:95:26:ce:e2 dst_mac 02:47:31:ad:4c:53 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10631 flower src_mac 02:5d:e1:26:d2:8d dst_mac 02:c0:4f:53:d6:3d vlan_id 622 vlan_ethtype 0x0800 src_ip 64.253.207.213 dst_ip 95.228.123.179 ip_proto udp src_port 23604 dst_port 376 action trap && tc filter add dev swp1 ingress protocol ip pref 10632 flower src_mac 02:93:69:79:7c:0d dst_mac 02:35:5e:de:0b:dd src_ip 50.10.56.226 dst_ip 91.12.153.227 action pass && tc filter add dev swp1 ingress protocol ip pref 10633 flower src_mac 02:f1:e4:96:ea:b1 dst_mac 02:9c:8b:61:f8:ed src_ip 74.193.154.32 dst_ip 57.200.17.32 ip_proto icmp code 55 type 0 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:4c:6e:c9:bb:16 dst_mac 02:ec:57:ca:f9:fc vlan_id 2916 vlan_ethtype ip src_ip 89.75.178.81 dst_ip 25.160.151.30 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10635 flower src_mac 02:50:8f:7a:f4:a8 dst_mac 02:c8:6d:7c:f8:42 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10636 flower src_mac 02:55:14:ee:b4:30 dst_mac 02:f2:f9:e8:00:d2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10637 flower src_mac 02:05:1a:a7:98:f8 dst_mac 02:40:72:3c:69:5f vlan_id 3115 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10638 flower src_mac 02:b2:70:8d:17:2e dst_mac 02:03:3d:e2:8c:c3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10639 flower src_mac 02:21:7a:1a:75:2c dst_mac 02:a0:10:bb:6d:0e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10640 flower src_mac 02:dc:ff:dc:23:00 dst_mac 02:35:b6:ac:18:bb vlan_id 3659 vlan_ethtype ipv4 src_ip 123.142.74.180 dst_ip 93.181.53.162 ip_proto tcp src_port 26566 dst_port 7125 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10641 flower src_mac 02:51:bb:d3:fd:7c dst_mac 02:02:c2:9a:4c:3c vlan_id 2451 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10642 flower src_mac 02:41:d7:8d:90:6e dst_mac 02:bd:af:ef:b5:b6 vlan_id 2380 vlan_ethtype ip src_ip 25.195.160.202 dst_ip 92.247.58.235 ip_proto tcp src_port 24937 dst_port 48268 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10643 flower src_mac 02:36:92:75:e7:27 dst_mac 02:88:c0:f2:4a:23 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10644 flower src_mac 02:75:30:53:e8:1f dst_mac 02:6a:d3:6e:c5:a4 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10645 flower src_mac 02:bc:96:9b:67:ee dst_mac 02:b2:23:d3:58:66 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10646 flower src_mac 02:51:c8:06:12:61 dst_mac 02:ac:8e:15:19:bb vlan_id 1971 vlan_ethtype ipv4 src_ip 34.130.16.230 dst_ip 68.136.205.196 ip_proto udp src_port 1026 dst_port 41938 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10647 flower src_mac 02:3a:46:27:28:57 dst_mac 02:19:5d:08:8b:4e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:19:1d:aa:dd:d6 dst_mac 02:13:24:27:5b:45 vlan_id 3024 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:30:e5:0f:79:db dst_mac 02:65:d6:3d:de:39 vlan_id 4033 vlan_ethtype ip src_ip 52.128.28.15 dst_ip 93.37.105.245 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10650 flower src_mac 02:65:56:e8:42:4f dst_mac 02:95:fb:5f:c4:84 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10651 flower src_mac 02:b4:ed:8d:7c:96 dst_mac 02:cb:f5:96:a0:a9 vlan_id 502 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10652 flower src_mac 02:fb:a9:ae:bb:6a dst_mac 02:e4:a8:56:49:9d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10653 flower src_mac 02:2e:97:56:66:52 dst_mac 02:97:00:2e:84:a5 vlan_id 2820 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10654 flower src_mac 02:68:f7:3d:82:e7 dst_mac 02:53:d1:37:48:c6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10655 flower src_mac 02:cb:8d:23:bd:a4 dst_mac 02:35:1b:88:84:95 vlan_id 1319 vlan_ethtype ip src_ip 50.87.232.22 dst_ip 13.101.147.183 ip_proto udp src_port 19030 dst_port 41905 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10656 flower src_mac 02:fd:e0:66:c6:29 dst_mac 02:84:ee:31:3e:ce src_ip 91.0.14.191 dst_ip 49.88.58.227 ip_proto icmp code 61 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10657 flower src_mac 02:ed:b6:2c:f6:57 dst_mac 02:27:60:8e:ca:77 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10658 flower src_mac 02:19:cc:ac:63:ef dst_mac 02:22:80:bd:a8:12 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10659 flower src_mac 02:16:ce:33:ab:df dst_mac 02:71:de:b8:e4:cc action pass && tc filter add dev swp1 ingress protocol ip pref 10660 flower src_mac 02:e4:01:97:3e:f2 dst_mac 02:b7:d8:80:1c:45 src_ip 85.32.164.214 dst_ip 80.172.69.204 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10661 flower src_mac 02:32:27:5c:10:9a dst_mac 02:22:c4:95:7c:0a vlan_id 3967 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10662 flower src_mac 02:6d:16:74:aa:9a dst_mac 02:ee:28:02:d9:67 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10663 flower src_mac 02:3e:b2:52:29:ac dst_mac 02:96:a0:73:ac:26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10664 flower src_mac 02:c7:4c:fc:29:1d dst_mac 02:3c:c8:c1:d4:73 vlan_id 3284 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10665 flower src_mac 02:6d:01:4d:7c:9a dst_mac 02:a0:81:c2:2e:c1 vlan_id 2792 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10666 flower src_mac 02:a2:ce:50:c8:df dst_mac 02:a4:62:f0:dc:6a vlan_id 1806 vlan_ethtype ipv4 src_ip 75.225.126.234 dst_ip 18.51.144.39 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10667 flower src_mac 02:c3:14:92:b5:67 dst_mac 02:42:a8:aa:73:68 src_ip 92.235.27.53 dst_ip 25.160.173.77 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10668 flower src_mac 02:7e:6d:d6:21:39 dst_mac 02:06:9e:63:1e:8d vlan_id 2336 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10669 flower src_mac 02:ad:de:af:dd:20 dst_mac 02:b7:33:52:86:66 src_ip 29.136.196.1 dst_ip 18.115.157.215 ip_proto icmp code 132 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10670 flower src_mac 02:71:5a:7d:fe:6e dst_mac 02:65:9b:53:ab:82 src_ip 26.150.79.28 dst_ip 28.213.70.231 ip_proto udp src_port 1110 dst_port 54062 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10671 flower src_mac 02:c4:86:d0:de:97 dst_mac 02:50:c8:8b:f8:fb vlan_id 3632 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10672 flower src_mac 02:a7:77:66:53:28 dst_mac 02:d8:56:e1:0b:39 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10673 flower src_mac 02:f0:e8:f2:9d:2d dst_mac 02:0f:45:c2:8a:b0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10674 flower src_mac 02:da:28:f0:6c:37 dst_mac 02:92:23:de:31:0c vlan_id 4091 vlan_ethtype 0x0800 src_ip 12.153.114.187 dst_ip 55.174.83.162 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10675 flower src_mac 02:57:ff:ab:d6:aa dst_mac 02:8c:ab:d3:9f:a7 action pass && tc filter add dev swp1 ingress protocol ip pref 10676 flower src_mac 02:26:b6:c0:3a:48 dst_mac 02:60:7d:87:c8:f6 src_ip 112.181.75.237 dst_ip 67.148.160.183 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10677 flower src_mac 02:5e:68:9f:00:b8 dst_mac 02:ab:9f:9f:83:d1 src_ip 36.234.6.150 dst_ip 124.171.160.93 ip_proto tcp src_port 61182 dst_port 17508 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10678 flower src_mac 02:f1:76:26:a2:27 dst_mac 02:16:8a:f5:93:96 src_ip 121.253.46.38 dst_ip 101.141.221.234 ip_proto icmp code 12 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10679 flower src_mac 02:00:6f:c3:6e:3e dst_mac 02:66:c4:c6:52:9b vlan_id 3434 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10680 flower src_mac 02:cd:f7:8c:88:98 dst_mac 02:ee:15:66:c2:32 src_ip 75.187.74.166 dst_ip 112.247.178.131 ip_proto tcp src_port 36242 dst_port 62703 action pass && tc filter add dev swp1 ingress protocol ip pref 10681 flower src_mac 02:aa:05:7e:79:89 dst_mac 02:e1:b1:b6:b6:65 src_ip 112.175.153.34 dst_ip 105.78.143.39 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10682 flower src_mac 02:b5:c7:4d:f7:6f dst_mac 02:90:88:06:bf:a8 src_ip 23.198.41.167 dst_ip 57.15.87.153 action drop && tc filter add dev swp1 ingress protocol ip pref 10683 flower src_mac 02:51:1a:aa:0f:8c dst_mac 02:09:d1:48:64:fb src_ip 21.52.251.175 dst_ip 55.42.62.50 ip_proto udp src_port 45398 dst_port 46410 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10684 flower src_mac 02:0c:7f:89:53:0c dst_mac 02:84:e6:78:ef:c4 src_ip 26.100.136.250 dst_ip 64.255.167.104 ip_proto tcp src_port 21081 dst_port 51727 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10685 flower src_mac 02:17:e0:cf:74:27 dst_mac 02:6b:aa:10:f2:13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10686 flower src_mac 02:cc:5f:b7:10:7d dst_mac 02:51:b3:4b:d2:65 vlan_id 707 vlan_ethtype 0x0800 src_ip 19.117.134.174 dst_ip 18.85.73.177 ip_proto udp src_port 48144 dst_port 9343 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10687 flower src_mac 02:96:19:20:5b:a1 dst_mac 02:79:61:af:db:b1 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10688 flower src_mac 02:47:b2:24:72:39 dst_mac 02:0c:85:78:51:cc vlan_id 1640 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10689 flower src_mac 02:99:4b:8d:16:61 dst_mac 02:08:c9:e3:4f:d0 vlan_id 3206 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10690 flower src_mac 02:d1:c0:d6:ad:94 dst_mac 02:d6:0c:80:9e:cd src_ip 81.4.8.154 dst_ip 42.118.116.79 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10691 flower src_mac 02:9d:8c:f3:50:7f dst_mac 02:f6:9f:dc:55:f1 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10692 flower src_mac 02:2d:1a:74:3f:f6 dst_mac 02:08:99:25:bc:a2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10693 flower src_mac 02:e8:04:ba:60:2d dst_mac 02:02:5c:dd:04:b1 vlan_id 959 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10694 flower src_mac 02:2c:a0:e6:8e:df dst_mac 02:7f:79:85:5a:30 src_ip 39.215.57.89 dst_ip 95.114.136.210 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10695 flower src_mac 02:06:72:ba:75:50 dst_mac 02:d8:d1:f7:d9:76 vlan_id 2621 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10696 flower src_mac 02:3f:05:77:d2:ae dst_mac 02:d7:d0:71:63:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10697 flower src_mac 02:3e:a5:fe:7d:01 dst_mac 02:81:3a:2c:10:57 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10698 flower src_mac 02:bb:5f:02:73:04 dst_mac 02:41:f5:98:e3:e5 vlan_id 3232 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10699 flower src_mac 02:b8:f7:39:29:75 dst_mac 02:b0:9c:4d:c9:a6 vlan_id 2792 vlan_ethtype ipv4 src_ip 59.29.95.95 dst_ip 124.157.8.44 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10700 flower src_mac 02:46:bf:a0:c4:b8 dst_mac 02:77:2a:25:1d:16 vlan_id 445 vlan_ethtype 0x0800 src_ip 94.253.17.7 dst_ip 123.158.102.27 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10701 flower src_mac 02:56:ff:74:b2:f8 dst_mac 02:d6:f6:fe:0e:58 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10702 flower src_mac 02:82:a8:8a:c4:82 dst_mac 02:04:06:36:b5:98 vlan_id 3973 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10703 flower src_mac 02:fa:87:db:6a:c3 dst_mac 02:64:27:99:d7:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10704 flower src_mac 02:18:08:34:6c:9c dst_mac 02:58:a7:89:c5:04 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10705 flower src_mac 02:14:c8:7d:60:8c dst_mac 02:b6:ab:2a:42:06 vlan_id 1861 vlan_ethtype ipv4 src_ip 106.187.225.126 dst_ip 123.44.172.219 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10706 flower src_mac 02:e6:e7:52:b7:cd dst_mac 02:03:20:59:8c:91 vlan_id 2721 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10707 flower src_mac 02:9d:55:00:7b:be dst_mac 02:f5:c4:3a:28:68 action pass && tc filter add dev swp1 ingress protocol ip pref 10708 flower src_mac 02:c1:66:02:90:56 dst_mac 02:03:b8:10:14:b3 src_ip 113.207.149.13 dst_ip 46.155.131.129 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10709 flower src_mac 02:87:6f:72:11:25 dst_mac 02:10:ef:8d:ff:2e src_ip 38.175.187.28 dst_ip 70.77.228.185 ip_proto udp src_port 65352 dst_port 24575 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10710 flower src_mac 02:f0:d2:be:f5:4c dst_mac 02:34:4c:dd:c0:bd src_ip 58.88.160.96 dst_ip 99.2.132.104 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10711 flower src_mac 02:fd:b9:79:9d:51 dst_mac 02:7c:95:0e:4c:dd src_ip 120.252.24.11 dst_ip 103.198.98.170 ip_proto tcp src_port 56820 dst_port 8613 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10712 flower src_mac 02:3a:1d:4b:bc:5a dst_mac 02:53:8a:a6:ba:2a vlan_id 1287 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10713 flower src_mac 02:a0:9f:2b:97:48 dst_mac 02:67:d1:64:4e:ab src_ip 123.116.166.24 dst_ip 37.49.173.106 ip_proto tcp src_port 29751 dst_port 28738 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10714 flower src_mac 02:09:51:6e:0b:37 dst_mac 02:40:52:0e:64:b1 vlan_id 3203 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10715 flower src_mac 02:ee:83:1b:af:f2 dst_mac 02:32:7d:37:e7:70 vlan_id 72 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10716 flower src_mac 02:84:b7:e1:a7:7f dst_mac 02:24:98:31:2c:29 vlan_id 972 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10717 flower src_mac 02:79:23:7f:0a:4e dst_mac 02:20:ff:b6:7e:19 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10718 flower src_mac 02:5f:3e:16:3b:cc dst_mac 02:c8:a2:17:16:28 vlan_id 1468 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10719 flower src_mac 02:cf:1d:b0:87:48 dst_mac 02:fd:ce:9c:84:8d vlan_id 3830 vlan_ethtype ipv4 src_ip 17.154.131.23 dst_ip 93.176.155.239 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10720 flower src_mac 02:85:4e:57:a9:03 dst_mac 02:c8:6e:91:86:60 vlan_id 319 vlan_ethtype ipv4 src_ip 97.245.55.150 dst_ip 120.245.154.205 ip_proto tcp src_port 56785 dst_port 53463 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10721 flower src_mac 02:80:f2:31:8b:09 dst_mac 02:00:af:22:e0:67 vlan_id 1782 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10722 flower src_mac 02:52:5e:07:79:83 dst_mac 02:65:db:99:23:d5 action trap && tc filter add dev swp1 ingress protocol ip pref 10723 flower src_mac 02:80:84:a7:6f:a9 dst_mac 02:c3:f2:2d:82:35 src_ip 74.51.239.211 dst_ip 21.33.147.11 ip_proto icmp code 38 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10724 flower src_mac 02:d7:10:34:83:0f dst_mac 02:65:e5:01:10:e7 vlan_id 604 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10725 flower src_mac 02:71:ed:c5:88:48 dst_mac 02:49:b6:d4:ad:7e src_ip 25.41.96.38 dst_ip 72.235.244.131 ip_proto icmp code 71 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10726 flower src_mac 02:39:a8:1a:44:0a dst_mac 02:51:b5:90:84:9b vlan_id 3360 vlan_ethtype 0x0800 src_ip 66.89.196.177 dst_ip 40.16.138.38 ip_proto tcp src_port 47003 dst_port 25223 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10727 flower src_mac 02:ef:ff:9c:16:90 dst_mac 02:21:42:53:6c:99 vlan_id 2109 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10728 flower src_mac 02:e3:46:18:1b:0e dst_mac 02:b4:e9:93:54:a8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10729 flower src_mac 02:e6:9e:8a:97:6b dst_mac 02:a7:9c:2d:f6:96 vlan_id 1924 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10730 flower src_mac 02:58:e5:82:8d:89 dst_mac 02:dc:e0:87:9f:24 vlan_id 1129 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10731 flower src_mac 02:65:47:6c:24:6e dst_mac 02:82:0f:37:92:31 src_ip 68.112.84.101 dst_ip 52.47.212.85 ip_proto udp src_port 10354 dst_port 47756 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10732 flower src_mac 02:52:2f:b3:c7:aa dst_mac 02:b2:4f:6c:02:08 vlan_id 1111 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10733 flower src_mac 02:cc:46:21:8c:81 dst_mac 02:fd:cf:df:42:8b src_ip 37.114.45.174 dst_ip 120.67.9.119 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10734 flower src_mac 02:99:df:d4:8d:33 dst_mac 02:1a:77:f5:4d:c6 vlan_id 1455 vlan_ethtype ip src_ip 120.119.79.249 dst_ip 60.122.248.248 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10735 flower src_mac 02:cd:a5:fa:2e:b8 dst_mac 02:f7:de:28:2d:63 vlan_id 2168 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10736 flower src_mac 02:97:3b:d8:41:ae dst_mac 02:75:cc:b3:75:52 vlan_id 2544 vlan_ethtype 0x0800 src_ip 93.128.20.194 dst_ip 67.254.150.25 ip_proto tcp src_port 1666 dst_port 718 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10737 flower src_mac 02:57:0a:bb:8c:c7 dst_mac 02:6d:ec:11:d4:da vlan_id 1023 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10738 flower src_mac 02:2d:d0:11:b3:c9 dst_mac 02:7b:1e:7d:80:b3 vlan_id 4016 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10739 flower src_mac 02:2f:5e:2e:e1:d9 dst_mac 02:a3:79:c0:6e:e3 vlan_id 2383 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10740 flower src_mac 02:d0:ae:67:85:34 dst_mac 02:8c:af:0d:db:f9 vlan_id 1378 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10741 flower src_mac 02:1e:e6:07:37:28 dst_mac 02:ef:16:c9:7a:85 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10742 flower src_mac 02:df:6f:8f:10:6d dst_mac 02:72:e7:96:f4:c1 vlan_id 3998 vlan_ethtype 0x0800 src_ip 96.203.211.243 dst_ip 121.239.7.19 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10743 flower src_mac 02:e2:5b:d2:73:54 dst_mac 02:80:7a:46:05:0c src_ip 120.184.7.220 dst_ip 92.181.124.150 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10744 flower src_mac 02:d4:00:c6:3a:ad dst_mac 02:19:9d:6e:a8:04 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10745 flower src_mac 02:4d:66:31:df:45 dst_mac 02:30:bf:b4:b3:18 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10746 flower src_mac 02:bf:bc:9f:0b:a1 dst_mac 02:88:7c:0c:1e:1d src_ip 35.216.42.110 dst_ip 88.188.143.160 ip_proto udp src_port 50779 dst_port 19853 action trap && tc filter add dev swp1 ingress protocol ip pref 10747 flower src_mac 02:82:de:c3:dd:8d dst_mac 02:d5:ca:97:b6:d3 src_ip 87.88.3.218 dst_ip 87.123.203.24 ip_proto tcp src_port 57555 dst_port 57308 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10748 flower src_mac 02:7d:15:70:60:ed dst_mac 02:f8:ab:08:6f:46 vlan_id 1712 vlan_ethtype 0x0800 src_ip 14.88.175.19 dst_ip 25.160.61.142 ip_proto udp src_port 56182 dst_port 7422 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10749 flower src_mac 02:24:c3:89:3b:c5 dst_mac 02:5e:60:a4:63:c0 src_ip 30.20.112.168 dst_ip 64.64.154.145 ip_proto icmp code 4 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10750 flower src_mac 02:67:e7:f0:35:9d dst_mac 02:d7:bb:94:89:e8 vlan_id 3823 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10751 flower src_mac 02:7b:16:91:78:3e dst_mac 02:cb:56:9b:4f:d3 src_ip 84.2.85.240 dst_ip 19.122.77.127 ip_proto icmp code 136 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10752 flower src_mac 02:bd:77:d1:48:10 dst_mac 02:84:69:49:01:12 vlan_id 3407 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10753 flower src_mac 02:cf:6d:ef:7f:8e dst_mac 02:25:10:da:06:2e src_ip 122.187.90.16 dst_ip 110.209.175.135 ip_proto udp src_port 31731 dst_port 31234 action trap && tc filter add dev swp1 ingress protocol ip pref 10754 flower src_mac 02:47:ac:2d:24:50 dst_mac 02:f1:5b:e2:ff:cc src_ip 102.125.178.56 dst_ip 103.198.27.105 ip_proto icmp code 218 type 18 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10755 flower src_mac 02:bb:97:6a:aa:94 dst_mac 02:f8:81:c6:ec:10 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10756 flower src_mac 02:eb:5f:ae:22:0c dst_mac 02:93:6b:15:88:82 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10757 flower src_mac 02:22:02:62:4a:0b dst_mac 02:04:38:59:13:bc src_ip 86.252.150.3 dst_ip 42.79.13.33 ip_proto tcp src_port 63310 dst_port 47431 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10758 flower src_mac 02:18:de:5d:2a:4d dst_mac 02:30:43:ca:03:f8 vlan_id 209 vlan_ethtype ipv4 src_ip 21.88.88.58 dst_ip 75.64.140.49 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10759 flower src_mac 02:9c:98:ba:c6:ff dst_mac 02:9e:ca:2d:dc:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10760 flower src_mac 02:18:d7:3c:16:c7 dst_mac 02:1e:d9:33:4f:40 vlan_id 602 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10761 flower src_mac 02:18:bc:9e:37:dd dst_mac 02:39:bf:76:bd:b4 src_ip 64.142.41.132 dst_ip 96.249.196.95 action pass && tc filter add dev swp1 ingress protocol ip pref 10762 flower src_mac 02:9b:81:d5:4e:57 dst_mac 02:af:2b:a3:ae:bd src_ip 99.186.33.67 dst_ip 86.38.87.24 ip_proto udp src_port 31614 dst_port 50882 action drop && tc filter add dev swp1 ingress protocol ip pref 10763 flower src_mac 02:3d:e9:7e:59:76 dst_mac 02:c5:cc:dd:48:c3 src_ip 107.237.170.161 dst_ip 95.226.213.210 action pass && tc filter add dev swp1 ingress protocol ip pref 10764 flower src_mac 02:99:85:8f:eb:ab dst_mac 02:7b:68:1c:92:40 src_ip 120.93.24.232 dst_ip 124.22.43.2 ip_proto udp src_port 13283 dst_port 23603 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10765 flower src_mac 02:95:44:86:fc:d1 dst_mac 02:31:d3:51:fc:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10766 flower src_mac 02:e3:b8:89:70:e5 dst_mac 02:03:bf:4d:7b:a3 vlan_id 2266 vlan_ethtype ipv4 src_ip 63.51.251.117 dst_ip 117.99.128.191 ip_proto udp src_port 5951 dst_port 33636 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10767 flower src_mac 02:ae:9c:db:ff:e7 dst_mac 02:f2:69:9e:75:c0 vlan_id 3791 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10768 flower src_mac 02:1f:7d:bc:df:9b dst_mac 02:f3:70:49:e1:1d src_ip 87.206.123.202 dst_ip 92.255.84.215 ip_proto tcp src_port 40337 dst_port 64814 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10769 flower src_mac 02:a1:a6:e4:e4:03 dst_mac 02:62:63:6e:24:c9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10770 flower src_mac 02:fb:3e:67:2e:05 dst_mac 02:8c:75:91:c4:3a vlan_id 1584 vlan_ethtype ip src_ip 106.128.203.55 dst_ip 23.208.71.186 ip_proto udp src_port 56124 dst_port 20655 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10771 flower src_mac 02:47:d9:50:c0:85 dst_mac 02:f0:49:5f:e7:6d vlan_id 3960 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10772 flower src_mac 02:61:cb:27:22:77 dst_mac 02:67:8c:a8:da:21 src_ip 61.228.181.81 dst_ip 106.190.34.108 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10773 flower src_mac 02:10:4d:7b:b9:df dst_mac 02:d9:3f:be:b4:98 vlan_id 1842 vlan_ethtype ipv4 src_ip 61.83.39.189 dst_ip 125.97.88.242 ip_proto tcp src_port 13134 dst_port 56533 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10774 flower src_mac 02:57:87:ff:5a:a8 dst_mac 02:fa:fa:e3:6d:72 vlan_id 1086 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10775 flower src_mac 02:0f:3f:64:c7:17 dst_mac 02:c6:d6:74:39:d3 vlan_id 3106 vlan_ethtype 0x0800 src_ip 108.103.142.4 dst_ip 74.31.19.63 action trap && tc filter add dev swp1 ingress protocol ip pref 10776 flower src_mac 02:27:ac:ae:6f:1f dst_mac 02:55:d3:89:f7:a3 src_ip 92.16.193.14 dst_ip 85.103.78.153 ip_proto icmp code 151 type 18 action drop && tc filter add dev swp1 ingress protocol ip pref 10777 flower src_mac 02:a5:25:aa:f8:1e dst_mac 02:39:bf:36:e1:0e src_ip 55.126.231.14 dst_ip 42.180.237.7 ip_proto tcp src_port 35935 dst_port 11142 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10778 flower src_mac 02:0d:87:a8:df:b7 dst_mac 02:03:3d:fc:01:03 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10779 flower src_mac 02:d3:5a:02:ba:85 dst_mac 02:11:ce:d4:46:18 vlan_id 90 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10780 flower src_mac 02:c4:90:39:04:bf dst_mac 02:18:3d:dd:b3:fe action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10781 flower src_mac 02:a6:a5:ae:3c:57 dst_mac 02:34:b2:82:20:4e src_ip 117.239.13.218 dst_ip 79.161.115.147 ip_proto icmp code 220 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10782 flower src_mac 02:c2:6e:30:d3:3f dst_mac 02:65:2f:d4:45:12 vlan_id 2300 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10783 flower src_mac 02:14:a7:48:50:62 dst_mac 02:c9:83:1c:25:ea action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10784 flower src_mac 02:32:c6:9e:05:26 dst_mac 02:c1:4a:26:5c:7c vlan_id 2785 vlan_ethtype ip src_ip 70.154.179.216 dst_ip 66.118.71.234 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10785 flower src_mac 02:96:bf:f3:f0:e2 dst_mac 02:a0:cb:f5:e5:a8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10786 flower src_mac 02:4e:23:13:8f:2a dst_mac 02:38:17:6c:e4:5c vlan_id 2438 vlan_ethtype ip src_ip 24.201.241.104 dst_ip 35.150.54.163 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:c2:2c:f7:a5:67 dst_mac 02:1f:7c:6a:92:68 vlan_id 3148 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10788 flower src_mac 02:f1:d4:1e:6e:45 dst_mac 02:f5:df:f1:2c:51 vlan_id 793 vlan_ethtype ip src_ip 114.163.198.57 dst_ip 79.50.164.137 ip_proto tcp src_port 61566 dst_port 43576 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10789 flower src_mac 02:c2:dd:9e:5f:4e dst_mac 02:5c:61:32:33:e6 vlan_id 2500 vlan_ethtype ipv4 src_ip 85.9.101.52 dst_ip 57.7.82.244 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10790 flower src_mac 02:3f:5e:ff:bb:56 dst_mac 02:e4:0a:b5:de:af vlan_id 108 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10791 flower src_mac 02:22:e2:23:31:1e dst_mac 02:72:be:06:b9:cb vlan_id 2548 vlan_ethtype ip src_ip 91.36.1.51 dst_ip 59.18.47.214 ip_proto tcp src_port 47404 dst_port 23669 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10792 flower src_mac 02:cc:bb:78:8a:bc dst_mac 02:80:8b:d6:3b:3b action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10793 flower src_mac 02:68:74:59:e4:27 dst_mac 02:88:36:bc:9d:bf src_ip 72.115.184.176 dst_ip 75.146.40.128 ip_proto udp src_port 50325 dst_port 65128 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10794 flower src_mac 02:a9:76:c6:ef:4d dst_mac 02:54:5f:79:49:8d action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10795 flower src_mac 02:a7:9c:39:6c:0f dst_mac 02:2f:3c:bc:d8:8e src_ip 125.34.133.134 dst_ip 58.31.216.189 ip_proto udp src_port 49970 dst_port 5008 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10796 flower src_mac 02:95:4d:2a:60:fa dst_mac 02:7e:0e:8c:db:a5 vlan_id 2464 vlan_ethtype ip src_ip 92.150.176.29 dst_ip 126.8.155.2 ip_proto udp src_port 18545 dst_port 46969 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10797 flower src_mac 02:30:a1:e1:3e:1f dst_mac 02:1a:25:97:84:69 vlan_id 4006 vlan_ethtype 0x0800 src_ip 19.77.229.64 dst_ip 21.178.146.212 ip_proto udp src_port 48337 dst_port 10655 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10798 flower src_mac 02:be:fd:a2:5d:7c dst_mac 02:2c:fe:59:78:f0 action pass && tc filter add dev swp1 ingress protocol ip pref 10799 flower src_mac 02:cc:4c:e5:77:bf dst_mac 02:5a:08:59:e1:65 src_ip 69.230.24.33 dst_ip 19.87.62.158 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:49:34:38:50:9f dst_mac 02:0f:be:71:87:fa vlan_id 1200 vlan_ethtype ip src_ip 97.3.226.90 dst_ip 69.44.162.149 ip_proto tcp src_port 51361 dst_port 44597 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10801 flower src_mac 02:78:b6:a3:4e:60 dst_mac 02:97:b5:b1:fc:aa action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10802 flower src_mac 02:0f:2b:73:59:cf dst_mac 02:56:4a:fe:1c:eb vlan_id 441 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10803 flower src_mac 02:11:ca:c4:c2:bd dst_mac 02:8d:8f:35:c7:bd vlan_id 1663 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10804 flower src_mac 02:c5:51:6f:e8:5c dst_mac 02:fc:05:13:4c:29 vlan_id 1447 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10805 flower src_mac 02:aa:81:c8:7e:b9 dst_mac 02:a4:85:25:b9:11 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10806 flower src_mac 02:d3:17:2d:10:df dst_mac 02:6e:09:87:fc:ce vlan_id 3360 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10807 flower src_mac 02:38:d9:01:1b:9a dst_mac 02:16:d3:9d:60:11 src_ip 104.106.155.158 dst_ip 97.194.115.111 ip_proto icmp code 126 type 0 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10808 flower src_mac 02:cb:c9:dd:c5:69 dst_mac 02:c1:9f:c8:37:c0 src_ip 51.99.53.137 dst_ip 13.188.0.17 ip_proto tcp src_port 9259 dst_port 61375 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10809 flower src_mac 02:b9:2a:36:93:5e dst_mac 02:88:18:1f:07:55 vlan_id 2045 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10810 flower src_mac 02:4d:d8:0a:d6:b5 dst_mac 02:97:40:a6:f5:9d src_ip 32.9.235.22 dst_ip 95.246.76.153 ip_proto icmp code 162 type 15 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10811 flower src_mac 02:db:47:72:0e:3c dst_mac 02:eb:b5:43:bf:31 src_ip 72.250.147.53 dst_ip 23.237.52.49 ip_proto icmp code 147 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10812 flower src_mac 02:2f:2b:dc:d1:10 dst_mac 02:88:6e:88:90:b3 vlan_id 1815 vlan_ethtype 0x0800 src_ip 75.50.131.234 dst_ip 78.186.110.150 ip_proto tcp src_port 57838 dst_port 22263 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10813 flower src_mac 02:4d:e5:25:81:d0 dst_mac 02:8b:16:87:88:bf src_ip 113.53.237.162 dst_ip 49.30.161.6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10814 flower src_mac 02:20:4e:64:14:d7 dst_mac 02:39:d7:81:a7:e6 vlan_id 185 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10815 flower src_mac 02:12:ed:f4:3b:13 dst_mac 02:74:61:48:06:ee vlan_id 1896 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10816 flower src_mac 02:01:03:33:04:c2 dst_mac 02:ed:65:a8:d2:83 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10817 flower src_mac 02:c3:c8:ca:61:15 dst_mac 02:31:70:70:4b:15 vlan_id 3168 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10818 flower src_mac 02:fd:07:7e:e4:07 dst_mac 02:ba:68:1f:7c:dd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10819 flower src_mac 02:ba:e6:30:8d:8b dst_mac 02:5c:ee:e0:56:3d vlan_id 2783 vlan_ethtype ipv4 src_ip 68.254.144.183 dst_ip 69.107.42.89 ip_proto udp src_port 17792 dst_port 19638 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10820 flower src_mac 02:32:61:3a:fa:3d dst_mac 02:c6:bb:6a:2c:c9 vlan_id 1786 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10821 flower src_mac 02:5d:40:53:20:58 dst_mac 02:f2:8d:44:b3:3f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10822 flower src_mac 02:fa:b4:48:a1:9f dst_mac 02:e6:cf:fe:07:b4 src_ip 73.229.86.249 dst_ip 24.29.143.126 ip_proto icmp code 240 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10823 flower src_mac 02:5c:74:28:66:88 dst_mac 02:b8:69:ce:b5:ac action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10824 flower src_mac 02:e4:cf:2f:b1:1a dst_mac 02:c0:d3:32:f5:33 vlan_id 424 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10825 flower src_mac 02:75:a8:8a:f0:90 dst_mac 02:90:38:fd:3a:23 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10826 flower src_mac 02:a8:eb:cd:f8:19 dst_mac 02:30:b4:16:86:e3 vlan_id 2775 vlan_ethtype ipv4 src_ip 76.93.80.119 dst_ip 24.140.61.58 ip_proto tcp src_port 64845 dst_port 4218 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10827 flower src_mac 02:ca:e0:09:20:63 dst_mac 02:4a:60:e5:3c:33 vlan_id 2833 vlan_ethtype ip src_ip 36.43.200.250 dst_ip 82.177.58.17 ip_proto tcp src_port 23485 dst_port 39497 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10828 flower src_mac 02:cf:d9:69:f0:29 dst_mac 02:79:d7:e3:7d:da src_ip 49.129.156.19 dst_ip 13.184.110.139 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10829 flower src_mac 02:fb:7f:27:7a:fd dst_mac 02:ea:12:d9:f8:f6 vlan_id 1466 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10830 flower src_mac 02:2d:ed:24:6e:9d dst_mac 02:95:8f:3f:58:9f src_ip 62.38.122.12 dst_ip 92.71.26.68 ip_proto icmp code 245 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10831 flower src_mac 02:b2:e8:fa:22:43 dst_mac 02:0c:a7:a5:ec:9e vlan_id 3926 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10832 flower src_mac 02:94:3a:79:7b:4a dst_mac 02:35:ac:03:b0:d1 vlan_id 2528 vlan_ethtype ip src_ip 103.32.196.163 dst_ip 57.113.156.68 ip_proto tcp src_port 19460 dst_port 49013 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10833 flower src_mac 02:47:db:bc:67:44 dst_mac 02:e3:3a:ed:ce:27 vlan_id 2797 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10834 flower src_mac 02:59:a2:9e:47:ba dst_mac 02:19:33:92:fa:df vlan_id 3023 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10835 flower src_mac 02:6f:32:e9:53:e6 dst_mac 02:a8:7d:ec:fd:ae action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10836 flower src_mac 02:77:88:e8:b5:8d dst_mac 02:38:d3:d7:89:dc vlan_id 800 vlan_ethtype ipv4 src_ip 30.199.149.59 dst_ip 124.48.173.50 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10837 flower src_mac 02:7d:f0:d9:83:31 dst_mac 02:a0:ca:6d:84:6e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10838 flower src_mac 02:74:fc:6c:d8:d8 dst_mac 02:02:92:0a:3c:80 vlan_id 1569 vlan_ethtype ip src_ip 69.53.2.53 dst_ip 25.44.119.98 ip_proto udp src_port 55140 dst_port 48706 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10839 flower src_mac 02:10:b0:a2:c4:a8 dst_mac 02:f0:a3:22:3e:3f vlan_id 2726 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10840 flower src_mac 02:d8:95:06:27:95 dst_mac 02:b3:bf:3e:f4:c3 vlan_id 3124 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10841 flower src_mac 02:22:64:19:d6:03 dst_mac 02:3e:fc:14:f2:d9 vlan_id 844 vlan_ethtype ip src_ip 123.100.6.199 dst_ip 105.14.147.172 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10842 flower src_mac 02:82:54:61:a9:fc dst_mac 02:bd:2f:39:61:bc action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10843 flower src_mac 02:b7:0d:5a:09:e3 dst_mac 02:d7:77:63:59:50 src_ip 79.155.66.11 dst_ip 39.56.155.28 ip_proto icmp code 137 type 15 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10844 flower src_mac 02:1e:4f:62:74:6e dst_mac 02:98:f3:b0:da:fc action trap && tc filter add dev swp1 ingress protocol ip pref 10845 flower src_mac 02:b6:44:55:01:dc dst_mac 02:b5:8b:db:76:97 src_ip 98.236.167.149 dst_ip 16.234.213.183 ip_proto udp src_port 62955 dst_port 36956 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10846 flower src_mac 02:a0:16:1a:57:76 dst_mac 02:7a:b0:1c:0f:ee vlan_id 1028 vlan_ethtype ipv4 src_ip 71.193.154.127 dst_ip 94.205.56.41 ip_proto tcp src_port 12945 dst_port 16509 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10847 flower src_mac 02:3d:b9:22:14:d0 dst_mac 02:e2:9e:9f:2a:6f vlan_id 3217 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10848 flower src_mac 02:b3:c4:93:1d:59 dst_mac 02:95:00:81:27:81 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10849 flower src_mac 02:7a:98:f9:5d:40 dst_mac 02:e8:75:77:6a:5d vlan_id 3517 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10850 flower src_mac 02:b5:e7:46:23:47 dst_mac 02:3a:8b:71:e8:38 vlan_id 804 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10851 flower src_mac 02:3d:c5:7c:b3:c1 dst_mac 02:4f:5e:02:e4:4a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10852 flower src_mac 02:9b:53:5c:9d:27 dst_mac 02:fc:8c:28:a4:d0 vlan_id 1922 vlan_ethtype 0x0800 src_ip 99.188.249.103 dst_ip 109.147.22.30 ip_proto udp src_port 31008 dst_port 56503 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10853 flower src_mac 02:e5:b5:3c:27:5d dst_mac 02:38:7f:d2:f7:cc action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10854 flower src_mac 02:3a:1d:78:d7:e5 dst_mac 02:76:e2:0f:65:f4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10855 flower src_mac 02:1f:8f:25:42:e0 dst_mac 02:f2:55:7a:1b:5c vlan_id 2041 vlan_ethtype ipv4 src_ip 94.18.160.9 dst_ip 33.236.123.106 ip_proto udp src_port 64196 dst_port 47620 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10856 flower src_mac 02:50:3d:84:6c:37 dst_mac 02:2e:11:f6:43:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10857 flower src_mac 02:53:76:0c:7b:8b dst_mac 02:20:55:1b:72:95 vlan_id 1782 vlan_ethtype ip src_ip 21.126.229.219 dst_ip 116.167.237.94 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10858 flower src_mac 02:b7:19:26:33:01 dst_mac 02:3f:de:eb:18:94 vlan_id 2052 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10859 flower src_mac 02:de:92:25:d6:9c dst_mac 02:68:fa:21:20:c6 vlan_id 1277 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10860 flower src_mac 02:58:c7:dd:4f:a3 dst_mac 02:8d:bc:a5:16:4f action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10861 flower src_mac 02:9e:12:47:99:86 dst_mac 02:54:7e:c2:bf:47 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10862 flower src_mac 02:0b:6a:1a:d6:4d dst_mac 02:17:47:8c:29:e1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10863 flower src_mac 02:1d:d5:b4:c2:b1 dst_mac 02:62:aa:71:9f:69 vlan_id 181 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10864 flower src_mac 02:a8:29:10:1b:8c dst_mac 02:1a:10:4b:d6:f6 vlan_id 592 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10865 flower src_mac 02:0a:e9:0f:1f:b1 dst_mac 02:09:23:53:7c:a4 src_ip 79.122.41.23 dst_ip 95.133.58.237 ip_proto icmp code 126 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10866 flower src_mac 02:c6:78:2d:ed:d6 dst_mac 02:f2:cd:d2:57:90 vlan_id 3397 vlan_ethtype 0x0800 src_ip 121.217.38.246 dst_ip 30.212.217.210 ip_proto tcp src_port 7174 dst_port 1835 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10867 flower src_mac 02:10:a7:b5:a8:a3 dst_mac 02:9f:50:72:42:e0 vlan_id 3347 vlan_ethtype ipv4 src_ip 38.139.209.229 dst_ip 42.138.12.230 ip_proto udp src_port 59743 dst_port 10055 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10868 flower src_mac 02:60:f1:97:a9:eb dst_mac 02:b8:cf:4c:46:9f vlan_id 359 vlan_ethtype ip src_ip 118.241.9.234 dst_ip 111.135.235.95 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10869 flower src_mac 02:bd:b9:b3:60:31 dst_mac 02:c2:b7:f2:02:a3 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10870 flower src_mac 02:d2:7e:39:05:e4 dst_mac 02:fb:65:24:5d:2e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10871 flower src_mac 02:32:e2:28:3e:d2 dst_mac 02:e0:af:4e:86:7b vlan_id 1032 vlan_ethtype ipv4 src_ip 119.156.255.59 dst_ip 90.228.37.49 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10872 flower src_mac 02:73:97:91:81:0a dst_mac 02:1a:b6:79:2e:a2 vlan_id 1474 vlan_ethtype ip src_ip 61.9.238.205 dst_ip 61.93.150.214 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10873 flower src_mac 02:69:8f:13:08:8a dst_mac 02:ef:94:58:6a:31 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10874 flower src_mac 02:2e:54:49:b3:61 dst_mac 02:ad:a9:b6:a6:1e vlan_id 297 vlan_ethtype ipv4 src_ip 54.26.160.52 dst_ip 101.167.149.189 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10875 flower src_mac 02:15:e3:d1:43:6c dst_mac 02:da:8a:96:bc:c3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10876 flower src_mac 02:e2:c2:3e:3c:77 dst_mac 02:d3:9b:c7:30:47 vlan_id 614 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10877 flower src_mac 02:d0:ef:ea:73:9e dst_mac 02:6d:af:77:70:69 src_ip 63.7.28.8 dst_ip 118.133.171.213 ip_proto udp src_port 29456 dst_port 60429 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10878 flower src_mac 02:cb:4e:ad:96:5e dst_mac 02:76:c1:cc:45:ae src_ip 72.227.165.21 dst_ip 59.174.235.3 ip_proto icmp code 128 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10879 flower src_mac 02:8c:05:d3:78:c4 dst_mac 02:18:e4:b8:a0:07 vlan_id 1842 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10880 flower src_mac 02:f1:ca:0f:d7:72 dst_mac 02:a8:ff:00:c1:7f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10881 flower src_mac 02:28:75:13:ff:d9 dst_mac 02:2e:ce:57:d8:69 vlan_id 2298 vlan_ethtype ip src_ip 54.117.148.186 dst_ip 43.200.118.225 ip_proto udp src_port 56642 dst_port 11307 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10882 flower src_mac 02:8d:d5:cb:ed:11 dst_mac 02:76:95:9e:60:5b vlan_id 1315 vlan_ethtype ip src_ip 84.14.120.23 dst_ip 121.48.252.185 ip_proto udp src_port 64755 dst_port 55815 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10883 flower src_mac 02:11:6f:da:6e:0f dst_mac 02:b2:dc:81:58:11 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10884 flower src_mac 02:7a:f7:9a:12:63 dst_mac 02:7f:e4:7e:93:07 src_ip 84.17.76.222 dst_ip 86.153.196.181 ip_proto icmp code 159 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10885 flower src_mac 02:15:67:9f:ee:71 dst_mac 02:fe:ce:20:88:d2 vlan_id 140 vlan_ethtype 0x0800 src_ip 16.118.177.107 dst_ip 80.44.170.190 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10886 flower src_mac 02:9e:af:cd:95:c6 dst_mac 02:28:4d:0b:a4:cd vlan_id 2192 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10887 flower src_mac 02:fa:7a:01:c7:c1 dst_mac 02:59:9f:37:1e:4e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10888 flower src_mac 02:69:76:70:8d:4b dst_mac 02:1f:27:69:e1:c5 vlan_id 1009 vlan_ethtype ip src_ip 98.117.41.204 dst_ip 15.228.68.68 ip_proto udp src_port 4621 dst_port 49561 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10889 flower src_mac 02:8d:8a:e6:fc:84 dst_mac 02:d7:b2:f1:75:b5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10890 flower src_mac 02:1f:76:cc:63:b2 dst_mac 02:13:a6:2c:2b:8e vlan_id 2062 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10891 flower src_mac 02:af:64:24:7e:55 dst_mac 02:70:dc:b3:6e:bc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10892 flower src_mac 02:89:f7:ba:99:c6 dst_mac 02:fa:2d:a0:e4:49 vlan_id 2205 vlan_ethtype ip src_ip 95.63.69.157 dst_ip 109.95.248.83 ip_proto udp src_port 18922 dst_port 40423 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10893 flower src_mac 02:fb:1b:53:38:22 dst_mac 02:e9:2b:33:ca:42 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10894 flower src_mac 02:ab:31:f5:b1:e6 dst_mac 02:f5:4c:88:ed:d6 vlan_id 2662 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10895 flower src_mac 02:10:92:67:a7:bd dst_mac 02:70:cb:b8:0b:3a vlan_id 3152 vlan_ethtype ip src_ip 60.230.204.61 dst_ip 38.118.204.240 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10896 flower src_mac 02:92:a2:a5:88:3f dst_mac 02:fc:c0:c0:a1:ce vlan_id 2731 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10897 flower src_mac 02:3c:23:65:9b:8d dst_mac 02:b4:62:27:e6:fb src_ip 37.104.215.43 dst_ip 112.155.171.29 ip_proto tcp src_port 4067 dst_port 10721 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10898 flower src_mac 02:7d:b5:ee:87:19 dst_mac 02:6a:69:5b:62:d4 vlan_id 2149 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10899 flower src_mac 02:fa:31:51:6f:11 dst_mac 02:f3:af:00:70:f8 vlan_id 2353 vlan_ethtype ipv4 src_ip 124.202.86.43 dst_ip 19.172.137.163 ip_proto udp src_port 57375 dst_port 42712 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10900 flower src_mac 02:7d:61:99:b6:9d dst_mac 02:e4:9b:64:3a:ca src_ip 116.174.127.93 dst_ip 97.186.212.100 ip_proto icmp code 185 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10901 flower src_mac 02:f9:03:bd:dd:6d dst_mac 02:ac:e8:c8:aa:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10902 flower src_mac 02:33:90:19:c9:14 dst_mac 02:fa:06:ee:de:22 vlan_id 1682 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10903 flower src_mac 02:b7:43:4f:ea:d4 dst_mac 02:98:12:49:51:d6 vlan_id 709 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10904 flower src_mac 02:ab:58:0c:1e:44 dst_mac 02:c7:14:0f:3b:aa action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10905 flower src_mac 02:d1:35:cc:5d:a9 dst_mac 02:04:63:82:6f:3a vlan_id 607 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10906 flower src_mac 02:6d:3f:4f:85:b3 dst_mac 02:a4:1a:37:ac:04 vlan_id 3639 vlan_ethtype ip src_ip 49.128.172.222 dst_ip 55.87.244.199 ip_proto tcp src_port 58288 dst_port 62978 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10907 flower src_mac 02:c3:72:df:51:3d dst_mac 02:ee:fa:1c:64:fe action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10908 flower src_mac 02:db:09:29:a9:76 dst_mac 02:82:6b:91:e0:86 action pass && tc filter add dev swp1 ingress protocol ip pref 10909 flower src_mac 02:5a:3c:43:ae:01 dst_mac 02:61:21:cc:3b:8c src_ip 125.1.11.40 dst_ip 42.38.208.227 ip_proto icmp code 114 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10910 flower src_mac 02:6e:cf:85:4e:ff dst_mac 02:0f:5d:ea:17:db action drop && tc filter add dev swp1 ingress protocol ip pref 10911 flower src_mac 02:b0:03:d8:65:ce dst_mac 02:cf:81:5a:5c:70 src_ip 106.211.184.12 dst_ip 67.166.162.58 ip_proto icmp code 104 type 17 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10912 flower src_mac 02:f0:d2:0f:ac:39 dst_mac 02:c7:2b:86:9e:f2 vlan_id 1498 vlan_ethtype ip src_ip 66.29.32.60 dst_ip 11.148.127.234 ip_proto tcp src_port 48576 dst_port 30414 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10913 flower src_mac 02:57:13:46:16:37 dst_mac 02:77:1b:07:74:64 vlan_id 3418 vlan_ethtype ipv4 src_ip 69.73.132.233 dst_ip 44.180.122.194 ip_proto udp src_port 1573 dst_port 53789 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10914 flower src_mac 02:4d:c0:63:7a:e4 dst_mac 02:19:29:9e:4d:f4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10915 flower src_mac 02:a7:79:d9:71:e0 dst_mac 02:bc:97:d9:b4:4c vlan_id 714 vlan_ethtype ip src_ip 71.121.183.219 dst_ip 50.148.44.120 action drop && tc filter add dev swp1 ingress protocol ip pref 10916 flower src_mac 02:2b:06:2b:48:4b dst_mac 02:2c:b0:0c:4c:89 src_ip 95.166.121.24 dst_ip 108.4.176.54 ip_proto icmp code 103 type 13 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10917 flower src_mac 02:19:85:93:ba:ad dst_mac 02:1d:12:06:31:31 src_ip 78.215.175.220 dst_ip 27.246.80.171 ip_proto icmp code 33 type 8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10918 flower src_mac 02:03:4e:52:f3:a3 dst_mac 02:9e:34:fe:06:01 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10919 flower src_mac 02:17:9b:ba:97:8e dst_mac 02:b2:f8:2c:a6:23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10920 flower src_mac 02:69:c1:19:5c:18 dst_mac 02:9a:59:9f:96:17 vlan_id 2797 vlan_ethtype ipv4 src_ip 80.206.113.218 dst_ip 28.95.23.77 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10921 flower src_mac 02:19:f0:6d:2e:84 dst_mac 02:c0:4f:7d:b3:c0 src_ip 83.181.2.200 dst_ip 90.219.105.146 ip_proto udp src_port 14033 dst_port 44525 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10922 flower src_mac 02:b2:b9:a5:b2:78 dst_mac 02:42:f7:05:a6:eb vlan_id 2398 vlan_ethtype ipv4 src_ip 49.32.60.48 dst_ip 40.94.190.121 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10923 flower src_mac 02:aa:98:d9:2b:60 dst_mac 02:ff:4c:12:80:25 src_ip 69.132.72.192 dst_ip 80.234.185.74 ip_proto udp src_port 59425 dst_port 42641 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10924 flower src_mac 02:80:77:1b:90:5f dst_mac 02:7e:87:a4:f4:45 vlan_id 3981 vlan_ethtype 0x0800 src_ip 59.244.150.60 dst_ip 120.2.228.212 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:28:bc:cc:14:7f dst_mac 02:89:dd:93:3a:af vlan_id 911 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10926 flower src_mac 02:95:24:c4:3f:28 dst_mac 02:fc:3a:f9:57:ea vlan_id 4046 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10927 flower src_mac 02:61:fd:1d:70:af dst_mac 02:7e:33:66:b1:7e src_ip 74.96.108.216 dst_ip 73.69.149.176 ip_proto tcp src_port 41271 dst_port 17204 action pass && tc filter add dev swp1 ingress protocol ip pref 10928 flower src_mac 02:e3:7c:1d:8c:56 dst_mac 02:40:70:5d:55:62 src_ip 43.127.171.43 dst_ip 72.85.159.129 ip_proto icmp code 5 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10929 flower src_mac 02:c8:c2:33:25:44 dst_mac 02:4e:50:1a:28:dd vlan_id 1012 vlan_ethtype 0x0800 src_ip 119.168.224.166 dst_ip 20.67.143.182 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10930 flower src_mac 02:54:07:f8:b1:25 dst_mac 02:e3:23:9c:c9:5f vlan_id 3892 vlan_ethtype ip src_ip 88.182.209.21 dst_ip 53.239.7.27 ip_proto tcp src_port 31927 dst_port 9654 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10931 flower src_mac 02:74:06:bd:13:ad dst_mac 02:09:a7:7c:c5:a9 vlan_id 1464 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10932 flower src_mac 02:2d:1f:a9:f8:72 dst_mac 02:d6:cb:af:19:de action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10933 flower src_mac 02:22:bc:48:bf:48 dst_mac 02:1f:50:a4:3e:70 vlan_id 3413 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10934 flower src_mac 02:18:a6:9a:2c:8b dst_mac 02:22:16:9e:fb:79 src_ip 54.63.108.140 dst_ip 55.22.153.176 ip_proto udp src_port 38578 dst_port 31754 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10935 flower src_mac 02:78:95:67:81:d2 dst_mac 02:65:31:02:17:cf vlan_id 1737 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10936 flower src_mac 02:47:fd:23:47:3b dst_mac 02:28:3a:c9:76:3e action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10937 flower src_mac 02:0a:96:39:e0:28 dst_mac 02:91:98:16:51:39 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10938 flower src_mac 02:5b:c9:9e:a7:f2 dst_mac 02:eb:76:2f:00:e5 vlan_id 2396 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10939 flower src_mac 02:91:61:da:3a:73 dst_mac 02:ab:14:f6:1a:ed vlan_id 1052 vlan_ethtype ip src_ip 96.29.5.56 dst_ip 75.156.9.7 ip_proto udp src_port 4333 dst_port 11731 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10940 flower src_mac 02:65:d7:c4:3f:fc dst_mac 02:e0:3a:ea:c6:f1 vlan_id 4074 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10941 flower src_mac 02:78:fe:dc:fd:32 dst_mac 02:69:9a:24:19:31 vlan_id 2621 vlan_ethtype ipv4 src_ip 26.193.196.75 dst_ip 87.246.24.127 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10942 flower src_mac 02:3f:9d:0c:b3:bd dst_mac 02:e5:78:36:a7:de vlan_id 2260 vlan_ethtype ip src_ip 72.181.81.99 dst_ip 93.53.249.10 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10943 flower src_mac 02:d8:6e:3c:55:37 dst_mac 02:95:16:f5:9b:82 src_ip 52.75.76.35 dst_ip 55.156.132.6 ip_proto icmp code 9 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10944 flower src_mac 02:dd:37:cb:f2:9f dst_mac 02:9e:33:bc:94:d2 vlan_id 1419 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10945 flower src_mac 02:e5:21:8f:2e:f2 dst_mac 02:2d:60:6c:e2:d5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10946 flower src_mac 02:a6:d8:7d:72:51 dst_mac 02:53:ce:7b:2b:8d vlan_id 1310 vlan_ethtype ipv4 src_ip 60.1.146.204 dst_ip 47.4.37.102 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10947 flower src_mac 02:75:e2:6e:e0:0b dst_mac 02:61:bc:fc:83:f3 vlan_id 1926 vlan_ethtype ip src_ip 118.45.194.169 dst_ip 84.118.59.162 ip_proto udp src_port 5761 dst_port 17035 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10948 flower src_mac 02:8e:d8:1a:9f:5c dst_mac 02:41:d4:64:03:f9 vlan_id 453 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10949 flower src_mac 02:bd:7f:5b:d8:bc dst_mac 02:7c:44:07:9d:83 src_ip 74.106.192.230 dst_ip 75.82.250.147 ip_proto udp src_port 30968 dst_port 30657 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10950 flower src_mac 02:f9:78:27:98:2d dst_mac 02:14:cc:65:d6:69 src_ip 72.153.103.119 dst_ip 112.205.18.248 ip_proto icmp code 234 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10951 flower src_mac 02:96:6d:93:11:80 dst_mac 02:5a:b5:41:9d:74 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10952 flower src_mac 02:27:bf:89:cb:56 dst_mac 02:bb:08:f2:25:61 vlan_id 1595 vlan_ethtype 0x0800 src_ip 17.249.129.232 dst_ip 72.140.69.147 ip_proto udp src_port 50310 dst_port 6119 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:0f:ad:bd:b2:aa dst_mac 02:43:ab:db:52:1a vlan_id 2663 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10954 flower src_mac 02:db:b4:0a:54:4a dst_mac 02:0a:2b:73:20:3f src_ip 95.221.26.198 dst_ip 51.215.107.116 ip_proto icmp code 156 type 15 action drop && tc filter add dev swp1 ingress protocol ip pref 10955 flower src_mac 02:f6:57:47:9b:a8 dst_mac 02:68:5b:ac:71:33 src_ip 123.206.178.31 dst_ip 91.54.248.189 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10956 flower src_mac 02:1c:09:34:8b:ea dst_mac 02:1c:b1:54:4f:c5 vlan_id 2134 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10957 flower src_mac 02:36:10:49:b5:d4 dst_mac 02:c6:7c:0d:16:62 vlan_id 3692 vlan_ethtype ip src_ip 92.100.90.161 dst_ip 22.232.2.211 ip_proto tcp src_port 65504 dst_port 15195 action pass && tc filter add dev swp1 ingress protocol ip pref 10958 flower src_mac 02:94:43:ff:ce:46 dst_mac 02:11:a2:75:43:45 src_ip 13.241.86.39 dst_ip 73.62.56.90 ip_proto udp src_port 57034 dst_port 16879 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10959 flower src_mac 02:0a:2e:af:c3:81 dst_mac 02:56:41:69:ee:1d vlan_id 645 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10960 flower src_mac 02:19:17:ff:88:1e dst_mac 02:76:c0:83:a9:42 vlan_id 563 vlan_ethtype ipv4 src_ip 43.15.102.69 dst_ip 34.134.185.2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10961 flower src_mac 02:ce:1f:c9:a0:a9 dst_mac 02:be:c6:b9:b2:ea vlan_id 2799 vlan_ethtype 0x0800 src_ip 47.135.13.12 dst_ip 39.65.188.179 ip_proto udp src_port 57278 dst_port 39492 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10962 flower src_mac 02:34:39:a8:a9:7b dst_mac 02:2f:6a:94:dd:0a vlan_id 1692 vlan_ethtype ipv4 src_ip 50.97.62.144 dst_ip 49.94.159.98 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10963 flower src_mac 02:02:30:13:c8:1b dst_mac 02:f9:46:5b:79:9e action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10964 flower src_mac 02:f4:31:80:00:39 dst_mac 02:7f:8d:28:bc:73 src_ip 95.213.254.167 dst_ip 80.132.28.184 ip_proto udp src_port 15803 dst_port 15673 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10965 flower src_mac 02:e1:71:54:84:21 dst_mac 02:5f:f0:13:26:e8 src_ip 63.127.64.161 dst_ip 71.111.164.12 ip_proto icmp code 34 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10966 flower src_mac 02:a5:e0:ce:f1:38 dst_mac 02:e2:e6:2a:0a:71 vlan_id 924 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10967 flower src_mac 02:af:b1:93:cc:67 dst_mac 02:55:32:e4:a5:6c src_ip 86.218.197.76 dst_ip 74.55.6.247 ip_proto udp src_port 4049 dst_port 61132 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10968 flower src_mac 02:7a:39:4b:00:6f dst_mac 02:80:9b:ce:06:0b src_ip 89.233.234.211 dst_ip 25.185.53.165 ip_proto tcp src_port 34514 dst_port 3321 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:fc:7c:91:2e:89 dst_mac 02:b2:e8:49:d9:99 vlan_id 1056 vlan_ethtype ip src_ip 77.216.47.184 dst_ip 73.234.210.81 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10970 flower src_mac 02:62:26:ad:4d:ea dst_mac 02:8c:4a:38:a6:db action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10971 flower src_mac 02:ee:a2:f0:98:a9 dst_mac 02:82:af:86:bd:99 vlan_id 2034 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10972 flower src_mac 02:cf:56:ef:55:ac dst_mac 02:dd:80:bf:20:fd vlan_id 2979 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10973 flower src_mac 02:de:20:aa:f5:56 dst_mac 02:cd:c6:9c:fb:d3 src_ip 121.43.100.45 dst_ip 118.221.78.16 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10974 flower src_mac 02:aa:69:4d:a5:de dst_mac 02:75:df:ca:b9:b6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10975 flower src_mac 02:f5:86:ef:33:9a dst_mac 02:0a:8a:e9:89:1d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10976 flower src_mac 02:c4:55:a7:28:70 dst_mac 02:cf:ea:ea:02:b8 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10977 flower src_mac 02:cc:30:96:da:c1 dst_mac 02:e0:91:8e:36:10 src_ip 86.72.227.194 dst_ip 68.230.196.153 ip_proto udp src_port 20963 dst_port 47394 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10978 flower src_mac 02:a1:cc:32:cc:6c dst_mac 02:ce:3d:ae:99:3f vlan_id 717 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10979 flower src_mac 02:af:51:1f:71:34 dst_mac 02:a4:dd:ef:f4:ce vlan_id 755 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10980 flower src_mac 02:83:82:2f:01:fe dst_mac 02:30:70:3c:73:74 vlan_id 2238 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:60:d3:ed:9e:6c dst_mac 02:fe:15:4a:90:4b vlan_id 3944 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10982 flower src_mac 02:d8:58:c1:a0:49 dst_mac 02:b9:4a:25:6c:4f src_ip 57.31.78.160 dst_ip 62.255.88.1 ip_proto udp src_port 9606 dst_port 5860 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10983 flower src_mac 02:51:42:20:bc:e9 dst_mac 02:9e:3a:98:8d:ec vlan_id 1115 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10984 flower src_mac 02:b8:cb:9c:7c:86 dst_mac 02:a7:4a:94:b2:e3 vlan_id 195 vlan_ethtype ipv4 src_ip 103.77.185.235 dst_ip 77.9.137.126 ip_proto tcp src_port 54942 dst_port 20182 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10985 flower src_mac 02:62:b3:8e:9f:29 dst_mac 02:bc:6e:ec:74:e5 action trap && tc filter add dev swp1 ingress protocol ip pref 10986 flower src_mac 02:aa:fa:e7:49:57 dst_mac 02:3f:88:64:e1:0d src_ip 98.176.38.157 dst_ip 21.169.227.246 ip_proto icmp code 109 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10987 flower src_mac 02:74:46:7e:80:f8 dst_mac 02:8d:fe:9a:0d:c8 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10988 flower src_mac 02:6c:ac:22:c3:fb dst_mac 02:14:a1:3e:41:15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10989 flower src_mac 02:d3:4e:4e:b3:d2 dst_mac 02:e8:11:68:46:3a vlan_id 1571 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10990 flower src_mac 02:bc:4d:1e:c7:96 dst_mac 02:13:19:b1:2e:50 src_ip 74.229.232.158 dst_ip 111.217.0.87 ip_proto icmp code 133 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10991 flower src_mac 02:b1:40:bb:1b:53 dst_mac 02:15:e3:6d:e3:74 vlan_id 1083 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10992 flower src_mac 02:dc:87:0b:46:58 dst_mac 02:19:16:99:7d:1f vlan_id 1588 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10993 flower src_mac 02:98:16:27:c2:bf dst_mac 02:fb:72:39:1a:a1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10994 flower src_mac 02:64:8b:ad:b3:9a dst_mac 02:fd:78:46:3f:11 vlan_id 1215 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10995 flower src_mac 02:97:9c:13:5c:a4 dst_mac 02:19:c2:0d:fc:74 src_ip 17.215.50.82 dst_ip 68.161.154.146 ip_proto icmp code 204 type 8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10996 flower src_mac 02:dd:3a:ac:0c:df dst_mac 02:db:40:ab:a1:96 vlan_id 2246 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10997 flower src_mac 02:47:69:3a:5e:5c dst_mac 02:68:85:87:76:99 vlan_id 2503 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10998 flower src_mac 02:7c:c7:2a:75:0c dst_mac 02:76:d7:b4:06:1e action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10999 flower src_mac 02:cd:9b:a2:82:7e dst_mac 02:c7:d1:61:81:31 action trap && tc filter add dev swp1 ingress protocol ip pref 11000 flower src_mac 02:c4:b6:c6:87:1e dst_mac 02:75:19:20:f9:de src_ip 98.191.167.196 dst_ip 126.255.192.53 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11001 flower src_mac 02:fb:c8:07:86:8a dst_mac 02:82:3d:ab:54:09 vlan_id 3554 vlan_ethtype 0x0800 src_ip 65.166.20.104 dst_ip 70.173.42.39 ip_proto tcp src_port 49370 dst_port 32782 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11002 flower src_mac 02:01:51:9a:47:3e dst_mac 02:81:1d:25:45:fd src_ip 87.216.86.247 dst_ip 18.115.151.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11003 flower src_mac 02:71:0a:0d:d2:b3 dst_mac 02:f3:0d:e1:17:4c vlan_id 2300 vlan_ethtype ip src_ip 32.20.214.166 dst_ip 30.15.53.74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11004 flower src_mac 02:26:41:e1:1a:46 dst_mac 02:87:7f:98:7e:d6 vlan_id 3005 vlan_ethtype ip src_ip 116.225.91.116 dst_ip 94.199.158.78 ip_proto udp src_port 8805 dst_port 20883 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11005 flower src_mac 02:59:06:b1:eb:fa dst_mac 02:1d:ff:87:8f:a0 src_ip 78.130.105.203 dst_ip 98.103.196.144 ip_proto udp src_port 53109 dst_port 61263 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11006 flower src_mac 02:91:c3:b4:e1:c2 dst_mac 02:fc:2f:66:3d:01 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11007 flower src_mac 02:b3:0a:56:0f:ee dst_mac 02:f5:8e:04:25:03 vlan_id 696 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11008 flower src_mac 02:89:e9:00:e7:89 dst_mac 02:43:98:22:3a:f4 vlan_id 2048 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:b8:fc:0d:4f:63 dst_mac 02:2a:ef:4c:07:35 vlan_id 3515 vlan_ethtype ipv4 src_ip 121.139.120.42 dst_ip 13.56.150.128 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11010 flower src_mac 02:7c:c8:fc:f9:39 dst_mac 02:cc:c1:59:60:8b action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11011 flower src_mac 02:73:58:fe:9f:72 dst_mac 02:47:8d:0a:1b:ed action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11012 flower src_mac 02:fc:e6:01:4d:1b dst_mac 02:db:86:a2:a6:bd action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11013 flower src_mac 02:65:b5:e0:45:11 dst_mac 02:ff:95:27:bf:c5 vlan_id 1276 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11014 flower src_mac 02:f1:0a:4e:df:1c dst_mac 02:b4:cb:12:52:67 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11015 flower src_mac 02:fb:e1:8b:30:03 dst_mac 02:5b:e0:d2:7d:8e vlan_id 387 vlan_ethtype ip src_ip 33.137.20.247 dst_ip 68.117.64.23 ip_proto tcp src_port 2611 dst_port 40390 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11016 flower src_mac 02:ac:cc:d8:82:80 dst_mac 02:7f:df:b6:2b:35 vlan_id 2235 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11017 flower src_mac 02:4f:82:6d:99:4d dst_mac 02:4c:94:98:02:33 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11018 flower src_mac 02:69:bf:9a:e1:ea dst_mac 02:cb:dd:5d:0b:2b vlan_id 3090 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11019 flower src_mac 02:69:ba:da:73:59 dst_mac 02:57:a7:59:88:f5 vlan_id 3893 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11020 flower src_mac 02:db:ba:b9:85:c6 dst_mac 02:a5:2d:18:c1:91 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11021 flower src_mac 02:dd:5e:11:a8:b3 dst_mac 02:59:9e:2a:d3:da src_ip 104.153.160.242 dst_ip 80.231.98.111 ip_proto icmp code 110 type 14 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11022 flower src_mac 02:a2:27:bb:37:9c dst_mac 02:3b:c1:ac:49:d9 src_ip 95.81.9.145 dst_ip 58.156.60.227 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11023 flower src_mac 02:cc:e9:2a:ad:cd dst_mac 02:97:fc:6b:2d:7c vlan_id 3436 vlan_ethtype ipv4 src_ip 114.35.42.50 dst_ip 121.126.14.170 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11024 flower src_mac 02:c4:47:9e:a4:dc dst_mac 02:95:fe:b1:b2:a5 src_ip 18.34.241.12 dst_ip 72.59.236.208 ip_proto tcp src_port 9583 dst_port 25036 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11025 flower src_mac 02:9b:d5:eb:a7:35 dst_mac 02:fd:bc:fe:83:b5 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11026 flower src_mac 02:4d:ad:f0:57:e9 dst_mac 02:43:7a:3f:6e:e2 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11027 flower src_mac 02:d1:d8:da:2a:2f dst_mac 02:3b:21:79:c7:61 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11028 flower src_mac 02:87:37:b9:b3:5d dst_mac 02:90:b7:04:d4:4f src_ip 20.54.220.77 dst_ip 94.52.116.245 ip_proto icmp code 238 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11029 flower src_mac 02:b2:ce:ea:4c:20 dst_mac 02:63:e8:fe:89:11 vlan_id 1733 vlan_ethtype ip src_ip 125.72.187.161 dst_ip 36.111.231.124 ip_proto udp src_port 59404 dst_port 19 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11030 flower src_mac 02:28:8c:79:8c:46 dst_mac 02:01:03:52:cb:4e src_ip 18.70.224.156 dst_ip 121.163.206.154 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11031 flower src_mac 02:c5:06:54:4a:46 dst_mac 02:c7:44:90:c8:ba action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11032 flower src_mac 02:01:d7:55:e6:48 dst_mac 02:18:45:fb:53:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11033 flower src_mac 02:28:87:d6:76:e6 dst_mac 02:9a:05:5e:25:d8 vlan_id 1075 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11034 flower src_mac 02:f8:57:f2:48:4d dst_mac 02:a2:fb:9a:cb:85 src_ip 76.16.39.199 dst_ip 38.81.119.20 ip_proto icmp code 91 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11035 flower src_mac 02:af:59:4d:a9:8e dst_mac 02:13:5e:bd:04:9b vlan_id 3394 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11036 flower src_mac 02:18:0d:3d:b5:8d dst_mac 02:a7:68:ba:f7:fd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11037 flower src_mac 02:01:df:c5:e0:6d dst_mac 02:e9:1f:f9:e1:dd vlan_id 1392 vlan_ethtype ipv4 src_ip 123.174.32.242 dst_ip 106.160.115.59 ip_proto udp src_port 24340 dst_port 26918 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11038 flower src_mac 02:1f:6d:eb:74:7f dst_mac 02:08:6c:27:b7:e1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11039 flower src_mac 02:7d:f6:bb:87:1f dst_mac 02:97:85:62:06:ab vlan_id 3805 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11040 flower src_mac 02:8b:2f:ac:19:f7 dst_mac 02:8f:f4:a0:b9:34 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11041 flower src_mac 02:10:5f:5d:d8:ae dst_mac 02:16:d9:aa:48:e1 src_ip 48.140.143.77 dst_ip 34.155.20.96 ip_proto icmp code 22 type 17 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11042 flower src_mac 02:87:52:b8:47:c6 dst_mac 02:de:0e:06:5b:72 vlan_id 3310 vlan_ethtype ipv4 src_ip 34.21.95.160 dst_ip 77.123.144.141 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11043 flower src_mac 02:73:2c:0c:78:e1 dst_mac 02:2a:7d:56:1f:87 vlan_id 827 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11044 flower src_mac 02:a2:65:4d:df:57 dst_mac 02:03:f4:41:aa:27 vlan_id 188 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11045 flower src_mac 02:7a:de:f8:65:52 dst_mac 02:7f:d5:8b:18:4e action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11046 flower src_mac 02:bd:28:bb:80:d7 dst_mac 02:0e:63:aa:7a:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11047 flower src_mac 02:bd:47:3f:c6:4f dst_mac 02:bc:05:6f:92:e8 vlan_id 1655 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11048 flower src_mac 02:e5:ab:61:9b:b9 dst_mac 02:70:ff:2e:96:87 src_ip 122.134.182.89 dst_ip 88.175.74.245 ip_proto udp src_port 19079 dst_port 7615 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11049 flower src_mac 02:83:d6:8e:ca:4f dst_mac 02:26:3d:c5:c2:7d vlan_id 2806 vlan_ethtype 0x0800 src_ip 72.140.177.146 dst_ip 65.73.91.190 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:96:eb:64:24:18 dst_mac 02:8b:f4:39:cd:75 vlan_id 4063 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11051 flower src_mac 02:81:f2:3b:e9:22 dst_mac 02:fa:f7:44:00:76 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11052 flower src_mac 02:89:ae:5c:9e:8c dst_mac 02:31:e3:6b:25:ec vlan_id 2706 vlan_ethtype 0x0800 src_ip 91.57.103.28 dst_ip 77.21.170.181 ip_proto udp src_port 16499 dst_port 20748 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11053 flower src_mac 02:4e:cc:e9:67:2b dst_mac 02:90:a5:9b:0b:ab action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11054 flower src_mac 02:1c:46:86:20:30 dst_mac 02:63:a7:f7:d0:8d vlan_id 2046 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11055 flower src_mac 02:75:24:24:6a:09 dst_mac 02:1e:84:1f:f3:b3 src_ip 22.158.120.220 dst_ip 102.125.231.16 ip_proto tcp src_port 13092 dst_port 48935 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11056 flower src_mac 02:d3:85:ab:ab:17 dst_mac 02:cf:b0:80:9e:45 vlan_id 3999 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11057 flower src_mac 02:7a:84:c0:0d:75 dst_mac 02:af:3a:ab:7c:b0 vlan_id 3836 vlan_ethtype 0x0800 src_ip 36.14.246.32 dst_ip 76.49.219.91 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11058 flower src_mac 02:b8:0b:e0:94:6b dst_mac 02:dc:e8:aa:2c:ca src_ip 82.187.1.25 dst_ip 72.206.170.142 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11059 flower src_mac 02:90:d0:e5:59:f1 dst_mac 02:28:43:f3:08:2a action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11060 flower src_mac 02:e5:c1:2a:58:24 dst_mac 02:f9:e3:45:ce:49 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11061 flower src_mac 02:63:a3:81:75:4c dst_mac 02:67:16:2b:42:98 src_ip 45.129.156.155 dst_ip 52.232.14.131 ip_proto tcp src_port 43134 dst_port 6630 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11062 flower src_mac 02:ff:49:f1:69:7b dst_mac 02:06:b7:e4:cb:81 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11063 flower src_mac 02:92:db:e9:16:a6 dst_mac 02:39:f9:ac:42:6d vlan_id 214 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11064 flower src_mac 02:0e:fa:96:d3:69 dst_mac 02:91:2c:c0:7d:c9 vlan_id 3127 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11065 flower src_mac 02:7a:c4:cf:ac:ce dst_mac 02:59:da:58:cf:d1 vlan_id 1327 vlan_ethtype ip src_ip 116.22.121.108 dst_ip 96.252.190.106 ip_proto udp src_port 27866 dst_port 41481 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11066 flower src_mac 02:55:58:7b:e2:66 dst_mac 02:7c:04:b5:fa:3b vlan_id 3191 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11067 flower src_mac 02:e9:06:19:6f:24 dst_mac 02:57:a0:0d:0a:75 vlan_id 2328 vlan_ethtype ipv4 src_ip 98.114.119.54 dst_ip 108.29.225.118 ip_proto tcp src_port 48908 dst_port 968 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11068 flower src_mac 02:47:3a:4a:ef:b1 dst_mac 02:fe:02:d7:34:f8 vlan_id 2199 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11069 flower src_mac 02:11:22:5f:5e:9b dst_mac 02:05:4d:e9:fc:52 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11070 flower src_mac 02:20:37:f0:04:4c dst_mac 02:be:e6:8a:91:5d action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11071 flower src_mac 02:b1:52:c5:6b:3a dst_mac 02:3e:18:aa:ee:2e action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11072 flower src_mac 02:ea:32:c7:ed:a3 dst_mac 02:2c:45:c3:df:6f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11073 flower src_mac 02:1d:9c:e6:5e:63 dst_mac 02:4a:5a:ec:c5:f6 vlan_id 2283 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11074 flower src_mac 02:53:34:f6:b5:4a dst_mac 02:37:c2:16:ab:2e src_ip 126.113.85.213 dst_ip 117.102.177.168 ip_proto udp src_port 49080 dst_port 8605 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11075 flower src_mac 02:ac:7c:c0:65:37 dst_mac 02:4e:58:28:ba:1e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11076 flower src_mac 02:d0:d2:66:94:88 dst_mac 02:df:d2:5e:02:ac vlan_id 2528 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11077 flower src_mac 02:e3:06:dc:0b:c7 dst_mac 02:5d:88:a6:ea:b6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11078 flower src_mac 02:f3:6d:1a:f8:45 dst_mac 02:b7:ff:d2:58:86 vlan_id 1957 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11079 flower src_mac 02:c1:09:eb:e4:19 dst_mac 02:4a:b8:b3:cd:05 vlan_id 2724 vlan_ethtype 0x0800 src_ip 29.157.191.144 dst_ip 115.3.79.162 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11080 flower src_mac 02:f5:c0:a5:d4:96 dst_mac 02:73:8f:6e:f0:3c vlan_id 1260 vlan_ethtype 0x0800 src_ip 47.21.180.248 dst_ip 11.33.158.58 action pass && tc filter add dev swp1 ingress protocol ip pref 11081 flower src_mac 02:5c:7f:2b:af:15 dst_mac 02:ac:0e:49:36:9a src_ip 45.205.71.161 dst_ip 70.61.133.20 ip_proto icmp code 205 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11082 flower src_mac 02:08:13:29:be:a8 dst_mac 02:34:91:6f:2f:08 vlan_id 445 vlan_ethtype 0x0800 src_ip 59.119.248.202 dst_ip 106.105.254.115 ip_proto tcp src_port 61051 dst_port 27471 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11083 flower src_mac 02:ce:d1:14:b6:6c dst_mac 02:70:01:50:18:05 vlan_id 3550 vlan_ethtype ipv4 src_ip 103.225.88.218 dst_ip 69.76.223.171 ip_proto tcp src_port 24240 dst_port 23418 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11084 flower src_mac 02:e2:ff:9b:5d:88 dst_mac 02:f0:55:09:da:ed src_ip 11.115.162.186 dst_ip 53.164.195.187 ip_proto tcp src_port 23964 dst_port 14022 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11085 flower src_mac 02:7a:71:a7:1d:a5 dst_mac 02:1f:64:d5:ce:4d src_ip 41.154.23.125 dst_ip 75.42.159.11 ip_proto udp src_port 50851 dst_port 47262 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11086 flower src_mac 02:61:4e:81:26:7f dst_mac 02:9b:fc:3b:e0:8a vlan_id 1492 vlan_ethtype 0x0800 src_ip 40.155.254.237 dst_ip 62.128.148.166 ip_proto tcp src_port 47189 dst_port 62526 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11087 flower src_mac 02:18:c3:2f:8f:36 dst_mac 02:8e:65:a4:0a:7e vlan_id 2985 vlan_ethtype ipv4 src_ip 122.239.150.142 dst_ip 30.30.132.26 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11088 flower src_mac 02:25:3a:ae:18:da dst_mac 02:6b:95:52:03:0f vlan_id 3352 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:15:e5:bd:99:86 dst_mac 02:43:d7:66:7c:14 vlan_id 829 vlan_ethtype ip src_ip 109.224.43.98 dst_ip 58.239.196.39 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11090 flower src_mac 02:f0:dc:41:0b:18 dst_mac 02:1b:cf:0f:f8:d5 vlan_id 879 vlan_ethtype ipv4 src_ip 81.6.26.197 dst_ip 69.109.197.214 ip_proto udp src_port 5758 dst_port 53071 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11091 flower src_mac 02:33:73:43:39:dc dst_mac 02:60:d6:75:b9:1b vlan_id 339 vlan_ethtype ipv4 src_ip 41.169.246.139 dst_ip 40.31.46.32 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11092 flower src_mac 02:24:73:db:fa:44 dst_mac 02:45:60:c8:17:02 vlan_id 1168 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11093 flower src_mac 02:e3:f8:d5:16:57 dst_mac 02:57:94:24:52:01 vlan_id 4001 vlan_ethtype ip src_ip 113.100.6.96 dst_ip 81.238.52.244 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11094 flower src_mac 02:9d:3a:41:d9:a8 dst_mac 02:2b:8e:ea:5e:87 vlan_id 599 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11095 flower src_mac 02:14:0b:70:91:4f dst_mac 02:b6:82:0c:67:4d vlan_id 2573 vlan_ethtype ip src_ip 78.121.163.233 dst_ip 58.168.113.116 ip_proto udp src_port 32698 dst_port 48858 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11096 flower src_mac 02:ad:51:3b:41:52 dst_mac 02:98:ff:07:de:eb vlan_id 1018 vlan_ethtype ip src_ip 52.175.203.180 dst_ip 25.144.166.177 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11097 flower src_mac 02:18:b8:7a:c2:c1 dst_mac 02:79:c4:ee:09:fc src_ip 57.51.94.72 dst_ip 126.254.173.179 ip_proto icmp code 137 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 11098 flower src_mac 02:4a:72:3c:c1:74 dst_mac 02:aa:6a:36:36:f8 src_ip 73.178.243.164 dst_ip 21.254.21.56 ip_proto tcp src_port 49405 dst_port 61988 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11099 flower src_mac 02:35:ef:8c:92:02 dst_mac 02:ac:eb:bf:93:7f action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11100 flower src_mac 02:4f:3b:3d:df:90 dst_mac 02:da:d8:c1:54:5d src_ip 46.247.110.107 dst_ip 55.192.164.170 ip_proto tcp src_port 18247 dst_port 47086 action trap && tc filter add dev swp1 ingress protocol ip pref 11101 flower src_mac 02:4e:de:16:62:b1 dst_mac 02:64:d0:f9:d0:60 src_ip 103.146.189.118 dst_ip 62.34.109.17 ip_proto icmp code 77 type 5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11102 flower src_mac 02:9b:07:49:41:89 dst_mac 02:fc:3a:3d:5f:e2 src_ip 45.9.110.78 dst_ip 121.163.200.194 ip_proto icmp code 192 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11103 flower src_mac 02:29:4e:70:e6:dc dst_mac 02:e4:ed:55:61:af vlan_id 2565 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:3c:ce:c3:06:7e dst_mac 02:bb:66:12:93:0b vlan_id 2997 vlan_ethtype ip src_ip 82.255.141.97 dst_ip 47.61.115.34 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11105 flower src_mac 02:cf:a9:66:cb:64 dst_mac 02:85:7e:ce:57:6f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11106 flower src_mac 02:c5:2d:40:5a:1f dst_mac 02:c4:5d:99:fb:8c src_ip 28.21.122.66 dst_ip 78.144.158.117 ip_proto udp src_port 22648 dst_port 32069 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11107 flower src_mac 02:05:64:f9:d3:a8 dst_mac 02:ff:0e:34:67:61 vlan_id 3889 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:09:db:ef:bc:69 dst_mac 02:c0:60:99:7e:dc vlan_id 3030 vlan_ethtype ipv4 src_ip 14.55.23.22 dst_ip 122.56.167.47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11109 flower src_mac 02:06:34:26:76:73 dst_mac 02:f7:a5:a2:a1:93 vlan_id 13 vlan_ethtype 0x0800 src_ip 86.230.63.238 dst_ip 68.10.141.142 ip_proto udp src_port 5494 dst_port 43082 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11110 flower src_mac 02:6a:d8:4d:51:3f dst_mac 02:83:fc:62:a0:0b vlan_id 3070 vlan_ethtype ip src_ip 91.122.18.113 dst_ip 108.122.48.169 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11111 flower src_mac 02:87:0a:76:a1:9a dst_mac 02:fe:2b:2c:61:d5 vlan_id 3991 vlan_ethtype ip src_ip 27.39.10.87 dst_ip 90.83.99.198 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11112 flower src_mac 02:2c:4d:5d:21:39 dst_mac 02:29:ae:c1:ca:b2 vlan_id 1065 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11113 flower src_mac 02:96:9c:60:1f:f8 dst_mac 02:05:27:36:94:97 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11114 flower src_mac 02:d7:2b:80:b7:6e dst_mac 02:f4:9d:46:81:49 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11115 flower src_mac 02:38:7a:99:c1:52 dst_mac 02:5b:26:33:e3:5e vlan_id 1299 vlan_ethtype ip src_ip 59.191.140.241 dst_ip 124.170.110.179 ip_proto tcp src_port 55851 dst_port 28477 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11116 flower src_mac 02:76:3d:70:98:a5 dst_mac 02:fd:7d:64:2a:08 vlan_id 3236 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11117 flower src_mac 02:1c:d2:6b:de:46 dst_mac 02:58:03:b9:56:a3 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11118 flower src_mac 02:9f:6d:b3:8c:af dst_mac 02:b5:2c:dc:96:a4 src_ip 80.120.183.136 dst_ip 42.245.19.120 ip_proto icmp code 45 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11119 flower src_mac 02:d2:0c:cd:9b:86 dst_mac 02:72:94:4b:ad:7f vlan_id 3322 vlan_ethtype 0x0800 src_ip 52.113.77.210 dst_ip 99.74.123.197 action drop && tc filter add dev swp1 ingress protocol ip pref 11120 flower src_mac 02:dc:cd:a3:6f:cb dst_mac 02:eb:4f:78:a2:47 src_ip 36.33.207.39 dst_ip 34.2.218.79 ip_proto udp src_port 56453 dst_port 22815 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11121 flower src_mac 02:4b:27:1d:3b:8a dst_mac 02:62:03:23:0c:b8 vlan_id 3302 vlan_ethtype ip src_ip 71.70.153.228 dst_ip 23.128.232.51 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11122 flower src_mac 02:d9:79:1d:c1:f0 dst_mac 02:ee:a4:54:ff:e0 vlan_id 2725 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11123 flower src_mac 02:dd:1b:4d:51:9f dst_mac 02:06:a7:74:f0:a7 vlan_id 930 vlan_ethtype ipv4 src_ip 53.144.114.129 dst_ip 49.89.79.46 ip_proto udp src_port 56334 dst_port 9106 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11124 flower src_mac 02:41:65:a4:d7:6b dst_mac 02:7b:17:7c:f4:87 vlan_id 3110 vlan_ethtype ipv4 src_ip 16.90.216.86 dst_ip 100.13.115.62 ip_proto udp src_port 16858 dst_port 3530 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11125 flower src_mac 02:1c:be:2f:c7:27 dst_mac 02:3d:a8:b1:bd:5c action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11126 flower src_mac 02:14:f1:33:20:fc dst_mac 02:89:fb:9f:53:8d vlan_id 591 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11127 flower src_mac 02:c2:63:a4:06:cb dst_mac 02:96:64:17:8d:55 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11128 flower src_mac 02:fb:86:03:92:9c dst_mac 02:85:30:fa:da:6a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11129 flower src_mac 02:1a:50:fe:ad:23 dst_mac 02:04:89:1c:59:7d vlan_id 3059 vlan_ethtype ip src_ip 45.249.25.29 dst_ip 85.119.210.31 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11130 flower src_mac 02:a6:5e:ed:ed:a2 dst_mac 02:2d:fb:c5:4b:33 src_ip 83.98.77.94 dst_ip 50.216.164.3 ip_proto icmp code 11 type 12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11131 flower src_mac 02:62:f0:88:1c:7d dst_mac 02:22:28:bd:f9:2a vlan_id 3342 vlan_ethtype ipv4 src_ip 59.14.9.227 dst_ip 75.113.168.121 ip_proto tcp src_port 6722 dst_port 60519 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11132 flower src_mac 02:46:e7:ed:e5:4a dst_mac 02:55:6c:7a:b2:d9 src_ip 61.70.209.99 dst_ip 106.61.153.235 ip_proto icmp code 205 type 18 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11133 flower src_mac 02:4c:01:bf:5b:bd dst_mac 02:bb:4d:a1:e2:ef action pass && tc filter add dev swp1 ingress protocol ip pref 11134 flower src_mac 02:04:68:49:ec:ee dst_mac 02:56:dd:48:39:27 src_ip 13.192.196.94 dst_ip 22.182.203.34 ip_proto icmp code 109 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11135 flower src_mac 02:2b:9d:86:0d:16 dst_mac 02:45:7b:e2:e0:7d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11136 flower src_mac 02:eb:dc:11:00:fb dst_mac 02:eb:7c:be:33:7c vlan_id 404 vlan_ethtype 0x0800 src_ip 14.92.235.73 dst_ip 75.223.97.67 ip_proto tcp src_port 8014 dst_port 48639 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11137 flower src_mac 02:f3:23:c6:19:36 dst_mac 02:fb:77:81:df:17 vlan_id 1676 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11138 flower src_mac 02:42:b5:d0:77:cf dst_mac 02:77:01:0f:03:22 src_ip 103.228.213.209 dst_ip 18.199.225.189 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11139 flower src_mac 02:80:2b:45:84:95 dst_mac 02:ae:dc:07:07:61 vlan_id 28 vlan_ethtype 0x0800 src_ip 77.161.104.6 dst_ip 25.236.126.60 ip_proto udp src_port 44401 dst_port 62183 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11140 flower src_mac 02:c5:98:bf:90:b8 dst_mac 02:4e:42:ed:32:10 vlan_id 820 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11141 flower src_mac 02:d5:a5:33:e5:92 dst_mac 02:51:d4:db:2d:fd src_ip 58.16.27.48 dst_ip 44.206.68.127 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11142 flower src_mac 02:2e:ba:25:ee:88 dst_mac 02:db:11:d7:2f:ac vlan_id 4064 vlan_ethtype 0x0800 src_ip 77.7.129.70 dst_ip 28.99.3.125 ip_proto udp src_port 34172 dst_port 33768 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11143 flower src_mac 02:78:fd:8a:c2:8a dst_mac 02:80:30:22:61:7a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11144 flower src_mac 02:b8:9b:dd:d7:76 dst_mac 02:9b:26:3a:c3:e2 vlan_id 2180 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11145 flower src_mac 02:19:3c:ba:96:7d dst_mac 02:e0:af:f4:b1:89 src_ip 110.48.41.3 dst_ip 112.186.106.120 ip_proto tcp src_port 36147 dst_port 39692 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11146 flower src_mac 02:98:00:0b:3e:3d dst_mac 02:8b:ac:74:47:c5 vlan_id 1737 vlan_ethtype 0x0800 src_ip 105.254.126.204 dst_ip 36.242.235.249 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11147 flower src_mac 02:b9:e6:96:1f:1e dst_mac 02:d8:80:e1:51:d5 vlan_id 3516 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11148 flower src_mac 02:67:29:25:fd:f4 dst_mac 02:34:de:88:77:14 vlan_id 3273 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11149 flower src_mac 02:6b:3d:d3:ba:ac dst_mac 02:fd:2e:28:5c:14 vlan_id 2744 vlan_ethtype 0x0800 src_ip 21.114.173.174 dst_ip 101.220.171.88 ip_proto tcp src_port 27714 dst_port 16607 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11150 flower src_mac 02:79:7c:2a:43:68 dst_mac 02:47:cd:b9:27:36 vlan_id 617 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11151 flower src_mac 02:01:9e:24:7b:ac dst_mac 02:61:e1:c5:8e:54 src_ip 11.86.115.147 dst_ip 72.180.10.188 ip_proto tcp src_port 4309 dst_port 39834 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11152 flower src_mac 02:44:1b:1b:21:02 dst_mac 02:2b:ce:6a:2a:61 vlan_id 2115 vlan_ethtype 0x0800 src_ip 115.136.85.42 dst_ip 119.126.249.8 action pass && tc filter add dev swp1 ingress protocol ip pref 11153 flower src_mac 02:36:d6:09:68:c3 dst_mac 02:3f:df:ec:23:b3 src_ip 92.178.14.7 dst_ip 123.172.83.62 ip_proto icmp code 95 type 5 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11154 flower src_mac 02:13:63:96:e0:65 dst_mac 02:08:eb:ae:77:e4 vlan_id 3051 vlan_ethtype ip src_ip 76.128.216.205 dst_ip 86.226.98.172 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11155 flower src_mac 02:f8:a7:cf:96:1c dst_mac 02:ae:64:e2:11:23 vlan_id 876 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11156 flower src_mac 02:7d:6a:1d:31:bc dst_mac 02:36:f8:e6:bf:6b vlan_id 2696 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11157 flower src_mac 02:1d:5b:70:55:d4 dst_mac 02:c5:ff:ed:fc:99 vlan_id 3075 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11158 flower src_mac 02:fe:8e:9c:11:38 dst_mac 02:3e:45:61:0a:62 src_ip 97.14.138.15 dst_ip 25.180.234.195 ip_proto udp src_port 16956 dst_port 39167 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11159 flower src_mac 02:a9:ff:d0:ed:98 dst_mac 02:fb:b1:a5:c7:96 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11160 flower src_mac 02:1b:47:61:a8:31 dst_mac 02:9e:2a:ca:5c:85 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:db:4c:cb:7a:ac dst_mac 02:1a:02:4f:1c:61 vlan_id 3018 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11162 flower src_mac 02:7b:d8:37:aa:1e dst_mac 02:e5:70:a0:aa:df vlan_id 3757 vlan_ethtype ipv4 src_ip 96.183.127.58 dst_ip 51.27.131.79 action drop && tc filter add dev swp1 ingress protocol ip pref 11163 flower src_mac 02:14:45:07:f9:9f dst_mac 02:2d:d0:a4:d7:c0 src_ip 115.181.159.171 dst_ip 40.91.116.87 ip_proto udp src_port 38979 dst_port 27328 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11164 flower src_mac 02:04:8d:0b:48:2a dst_mac 02:a2:fb:42:41:15 vlan_id 43 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11165 flower src_mac 02:e5:eb:24:4c:71 dst_mac 02:51:27:7d:62:50 vlan_id 2733 vlan_ethtype ip src_ip 53.239.19.99 dst_ip 76.178.216.145 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11166 flower src_mac 02:2a:7d:cc:c1:a4 dst_mac 02:f3:25:3a:d5:13 vlan_id 2166 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11167 flower src_mac 02:f8:ce:45:fa:93 dst_mac 02:cf:c4:a1:5f:3a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11168 flower src_mac 02:72:99:89:19:ef dst_mac 02:11:4c:7d:0b:e6 vlan_id 1190 vlan_ethtype 0x0800 src_ip 79.67.72.16 dst_ip 86.247.158.169 ip_proto udp src_port 59894 dst_port 41286 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11169 flower src_mac 02:e5:a2:8b:e9:e6 dst_mac 02:51:3f:df:43:09 src_ip 101.72.71.156 dst_ip 74.98.137.143 ip_proto tcp src_port 25355 dst_port 8459 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11170 flower src_mac 02:f5:40:fc:ad:21 dst_mac 02:4b:86:cc:59:46 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11171 flower src_mac 02:d7:a8:ac:14:07 dst_mac 02:0e:26:64:b9:ff vlan_id 1266 vlan_ethtype ipv4 src_ip 117.175.54.130 dst_ip 115.131.243.16 action drop && tc filter add dev swp1 ingress protocol ip pref 11172 flower src_mac 02:f6:6a:03:81:83 dst_mac 02:40:bc:20:6a:d1 src_ip 35.118.97.222 dst_ip 80.76.41.226 ip_proto tcp src_port 47898 dst_port 47863 action trap && tc filter add dev swp1 ingress protocol ip pref 11173 flower src_mac 02:25:4b:34:c3:26 dst_mac 02:aa:03:95:42:89 src_ip 77.209.237.190 dst_ip 80.142.227.53 ip_proto icmp code 105 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11174 flower src_mac 02:82:39:e5:d0:84 dst_mac 02:a5:32:3d:54:6a vlan_id 3123 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11175 flower src_mac 02:7a:0b:19:49:97 dst_mac 02:f1:3f:a5:b1:85 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11176 flower src_mac 02:8e:a3:5d:67:1f dst_mac 02:cf:55:66:0d:48 src_ip 51.123.216.178 dst_ip 104.130.204.42 ip_proto udp src_port 56740 dst_port 50368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11177 flower src_mac 02:c2:dd:3e:29:31 dst_mac 02:4e:53:71:49:74 vlan_id 3804 vlan_ethtype 0x0800 src_ip 21.89.59.60 dst_ip 27.210.120.236 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11178 flower src_mac 02:16:5e:df:24:99 dst_mac 02:46:9f:46:95:01 action pass && tc filter add dev swp1 ingress protocol ip pref 11179 flower src_mac 02:3a:60:29:cf:c8 dst_mac 02:d6:f4:f2:47:e8 src_ip 77.32.231.74 dst_ip 39.83.171.101 ip_proto tcp src_port 10028 dst_port 39865 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11180 flower src_mac 02:9a:30:29:fa:f0 dst_mac 02:09:0c:88:17:3a vlan_id 2679 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11181 flower src_mac 02:03:46:34:e7:1f dst_mac 02:54:67:66:42:e9 src_ip 74.248.220.151 dst_ip 29.216.14.76 ip_proto icmp code 41 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11182 flower src_mac 02:ca:29:98:42:66 dst_mac 02:08:bf:bf:9b:e9 vlan_id 1357 vlan_ethtype ip src_ip 73.227.144.54 dst_ip 25.8.6.67 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11183 flower src_mac 02:13:99:5f:2a:6b dst_mac 02:df:c1:f2:91:7b action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11184 flower src_mac 02:dc:9f:d1:06:90 dst_mac 02:2d:1b:9b:3e:84 src_ip 101.220.31.89 dst_ip 114.143.206.193 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11185 flower src_mac 02:49:71:e6:2a:34 dst_mac 02:37:2a:e0:50:31 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11186 flower src_mac 02:45:ac:43:71:f5 dst_mac 02:02:a6:19:89:e4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11187 flower src_mac 02:ef:ac:5b:e0:1b dst_mac 02:73:55:9a:0f:99 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11188 flower src_mac 02:4f:c8:b7:7b:a3 dst_mac 02:6b:9f:ce:be:38 src_ip 76.193.244.54 dst_ip 36.228.93.26 ip_proto udp src_port 18864 dst_port 53591 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11189 flower src_mac 02:d7:3d:be:43:2b dst_mac 02:5a:7d:fc:a0:55 src_ip 66.78.179.163 dst_ip 36.28.112.181 ip_proto udp src_port 12937 dst_port 63135 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11190 flower src_mac 02:11:99:eb:ae:b9 dst_mac 02:f7:23:c6:f6:7c vlan_id 1096 vlan_ethtype 0x0800 src_ip 43.107.87.187 dst_ip 41.145.217.209 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11191 flower src_mac 02:2a:1f:ec:02:18 dst_mac 02:1a:9a:c1:c7:bb action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11192 flower src_mac 02:80:b2:82:5f:29 dst_mac 02:5e:9e:34:76:47 vlan_id 1438 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11193 flower src_mac 02:30:ac:64:87:c1 dst_mac 02:d2:6f:dd:ac:d8 vlan_id 1071 vlan_ethtype ip src_ip 13.167.206.73 dst_ip 77.38.182.5 ip_proto tcp src_port 35611 dst_port 38342 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11194 flower src_mac 02:2c:7d:81:ab:74 dst_mac 02:d2:ef:58:de:54 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11195 flower src_mac 02:40:e2:66:74:46 dst_mac 02:c7:c4:37:c7:6a src_ip 54.220.202.44 dst_ip 115.225.148.108 ip_proto udp src_port 373 dst_port 32123 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11196 flower src_mac 02:d6:6a:5f:ab:62 dst_mac 02:cd:f1:33:c8:2c vlan_id 3705 vlan_ethtype ipv4 src_ip 93.10.51.109 dst_ip 107.68.235.89 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11197 flower src_mac 02:af:5b:97:5e:a3 dst_mac 02:58:37:df:1c:e4 vlan_id 3039 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11198 flower src_mac 02:3e:f0:a4:ca:90 dst_mac 02:70:82:c7:fc:ca vlan_id 2430 vlan_ethtype 0x0800 src_ip 28.31.116.207 dst_ip 84.147.206.200 ip_proto udp src_port 34065 dst_port 53261 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11199 flower src_mac 02:a0:e2:47:4f:db dst_mac 02:0e:63:26:35:81 src_ip 107.0.88.208 dst_ip 107.70.117.175 ip_proto udp src_port 34285 dst_port 26094 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:49:34:38:50:9f dst_mac 02:0f:be:71:87:fa vlan_id 1200 vlan_ethtype ip src_ip 97.3.226.90 dst_ip 69.44.162.149 ip_proto tcp src_port 51361 dst_port 44597 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10801 flower src_mac 02:78:b6:a3:4e:60 dst_mac 02:97:b5:b1:fc:aa action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10802 flower src_mac 02:0f:2b:73:59:cf dst_mac 02:56:4a:fe:1c:eb vlan_id 441 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10803 flower src_mac 02:11:ca:c4:c2:bd dst_mac 02:8d:8f:35:c7:bd vlan_id 1663 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10804 flower src_mac 02:c5:51:6f:e8:5c dst_mac 02:fc:05:13:4c:29 vlan_id 1447 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10805 flower src_mac 02:aa:81:c8:7e:b9 dst_mac 02:a4:85:25:b9:11 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10806 flower src_mac 02:d3:17:2d:10:df dst_mac 02:6e:09:87:fc:ce vlan_id 3360 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10807 flower src_mac 02:38:d9:01:1b:9a dst_mac 02:16:d3:9d:60:11 src_ip 104.106.155.158 dst_ip 97.194.115.111 ip_proto icmp code 126 type 0 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10808 flower src_mac 02:cb:c9:dd:c5:69 dst_mac 02:c1:9f:c8:37:c0 src_ip 51.99.53.137 dst_ip 13.188.0.17 ip_proto tcp src_port 9259 dst_port 61375 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10809 flower src_mac 02:b9:2a:36:93:5e dst_mac 02:88:18:1f:07:55 vlan_id 2045 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10810 flower src_mac 02:4d:d8:0a:d6:b5 dst_mac 02:97:40:a6:f5:9d src_ip 32.9.235.22 dst_ip 95.246.76.153 ip_proto icmp code 162 type 15 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10811 flower src_mac 02:db:47:72:0e:3c dst_mac 02:eb:b5:43:bf:31 src_ip 72.250.147.53 dst_ip 23.237.52.49 ip_proto icmp code 147 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10812 flower src_mac 02:2f:2b:dc:d1:10 dst_mac 02:88:6e:88:90:b3 vlan_id 1815 vlan_ethtype 0x0800 src_ip 75.50.131.234 dst_ip 78.186.110.150 ip_proto tcp src_port 57838 dst_port 22263 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10813 flower src_mac 02:4d:e5:25:81:d0 dst_mac 02:8b:16:87:88:bf src_ip 113.53.237.162 dst_ip 49.30.161.6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10814 flower src_mac 02:20:4e:64:14:d7 dst_mac 02:39:d7:81:a7:e6 vlan_id 185 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10815 flower src_mac 02:12:ed:f4:3b:13 dst_mac 02:74:61:48:06:ee vlan_id 1896 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10816 flower src_mac 02:01:03:33:04:c2 dst_mac 02:ed:65:a8:d2:83 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10817 flower src_mac 02:c3:c8:ca:61:15 dst_mac 02:31:70:70:4b:15 vlan_id 3168 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10818 flower src_mac 02:fd:07:7e:e4:07 dst_mac 02:ba:68:1f:7c:dd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10819 flower src_mac 02:ba:e6:30:8d:8b dst_mac 02:5c:ee:e0:56:3d vlan_id 2783 vlan_ethtype ipv4 src_ip 68.254.144.183 dst_ip 69.107.42.89 ip_proto udp src_port 17792 dst_port 19638 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10820 flower src_mac 02:32:61:3a:fa:3d dst_mac 02:c6:bb:6a:2c:c9 vlan_id 1786 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10821 flower src_mac 02:5d:40:53:20:58 dst_mac 02:f2:8d:44:b3:3f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10822 flower src_mac 02:fa:b4:48:a1:9f dst_mac 02:e6:cf:fe:07:b4 src_ip 73.229.86.249 dst_ip 24.29.143.126 ip_proto icmp code 240 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10823 flower src_mac 02:5c:74:28:66:88 dst_mac 02:b8:69:ce:b5:ac action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10824 flower src_mac 02:e4:cf:2f:b1:1a dst_mac 02:c0:d3:32:f5:33 vlan_id 424 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10825 flower src_mac 02:75:a8:8a:f0:90 dst_mac 02:90:38:fd:3a:23 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10826 flower src_mac 02:a8:eb:cd:f8:19 dst_mac 02:30:b4:16:86:e3 vlan_id 2775 vlan_ethtype ipv4 src_ip 76.93.80.119 dst_ip 24.140.61.58 ip_proto tcp src_port 64845 dst_port 4218 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10827 flower src_mac 02:ca:e0:09:20:63 dst_mac 02:4a:60:e5:3c:33 vlan_id 2833 vlan_ethtype ip src_ip 36.43.200.250 dst_ip 82.177.58.17 ip_proto tcp src_port 23485 dst_port 39497 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10828 flower src_mac 02:cf:d9:69:f0:29 dst_mac 02:79:d7:e3:7d:da src_ip 49.129.156.19 dst_ip 13.184.110.139 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10829 flower src_mac 02:fb:7f:27:7a:fd dst_mac 02:ea:12:d9:f8:f6 vlan_id 1466 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10830 flower src_mac 02:2d:ed:24:6e:9d dst_mac 02:95:8f:3f:58:9f src_ip 62.38.122.12 dst_ip 92.71.26.68 ip_proto icmp code 245 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10831 flower src_mac 02:b2:e8:fa:22:43 dst_mac 02:0c:a7:a5:ec:9e vlan_id 3926 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10832 flower src_mac 02:94:3a:79:7b:4a dst_mac 02:35:ac:03:b0:d1 vlan_id 2528 vlan_ethtype ip src_ip 103.32.196.163 dst_ip 57.113.156.68 ip_proto tcp src_port 19460 dst_port 49013 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10833 flower src_mac 02:47:db:bc:67:44 dst_mac 02:e3:3a:ed:ce:27 vlan_id 2797 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10834 flower src_mac 02:59:a2:9e:47:ba dst_mac 02:19:33:92:fa:df vlan_id 3023 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10835 flower src_mac 02:6f:32:e9:53:e6 dst_mac 02:a8:7d:ec:fd:ae action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10836 flower src_mac 02:77:88:e8:b5:8d dst_mac 02:38:d3:d7:89:dc vlan_id 800 vlan_ethtype ipv4 src_ip 30.199.149.59 dst_ip 124.48.173.50 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10837 flower src_mac 02:7d:f0:d9:83:31 dst_mac 02:a0:ca:6d:84:6e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10838 flower src_mac 02:74:fc:6c:d8:d8 dst_mac 02:02:92:0a:3c:80 vlan_id 1569 vlan_ethtype ip src_ip 69.53.2.53 dst_ip 25.44.119.98 ip_proto udp src_port 55140 dst_port 48706 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10839 flower src_mac 02:10:b0:a2:c4:a8 dst_mac 02:f0:a3:22:3e:3f vlan_id 2726 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10840 flower src_mac 02:d8:95:06:27:95 dst_mac 02:b3:bf:3e:f4:c3 vlan_id 3124 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10841 flower src_mac 02:22:64:19:d6:03 dst_mac 02:3e:fc:14:f2:d9 vlan_id 844 vlan_ethtype ip src_ip 123.100.6.199 dst_ip 105.14.147.172 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10842 flower src_mac 02:82:54:61:a9:fc dst_mac 02:bd:2f:39:61:bc action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10843 flower src_mac 02:b7:0d:5a:09:e3 dst_mac 02:d7:77:63:59:50 src_ip 79.155.66.11 dst_ip 39.56.155.28 ip_proto icmp code 137 type 15 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10844 flower src_mac 02:1e:4f:62:74:6e dst_mac 02:98:f3:b0:da:fc action trap && tc filter add dev swp1 ingress protocol ip pref 10845 flower src_mac 02:b6:44:55:01:dc dst_mac 02:b5:8b:db:76:97 src_ip 98.236.167.149 dst_ip 16.234.213.183 ip_proto udp src_port 62955 dst_port 36956 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10846 flower src_mac 02:a0:16:1a:57:76 dst_mac 02:7a:b0:1c:0f:ee vlan_id 1028 vlan_ethtype ipv4 src_ip 71.193.154.127 dst_ip 94.205.56.41 ip_proto tcp src_port 12945 dst_port 16509 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10847 flower src_mac 02:3d:b9:22:14:d0 dst_mac 02:e2:9e:9f:2a:6f vlan_id 3217 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10848 flower src_mac 02:b3:c4:93:1d:59 dst_mac 02:95:00:81:27:81 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10849 flower src_mac 02:7a:98:f9:5d:40 dst_mac 02:e8:75:77:6a:5d vlan_id 3517 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10850 flower src_mac 02:b5:e7:46:23:47 dst_mac 02:3a:8b:71:e8:38 vlan_id 804 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10851 flower src_mac 02:3d:c5:7c:b3:c1 dst_mac 02:4f:5e:02:e4:4a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10852 flower src_mac 02:9b:53:5c:9d:27 dst_mac 02:fc:8c:28:a4:d0 vlan_id 1922 vlan_ethtype 0x0800 src_ip 99.188.249.103 dst_ip 109.147.22.30 ip_proto udp src_port 31008 dst_port 56503 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10853 flower src_mac 02:e5:b5:3c:27:5d dst_mac 02:38:7f:d2:f7:cc action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10854 flower src_mac 02:3a:1d:78:d7:e5 dst_mac 02:76:e2:0f:65:f4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10855 flower src_mac 02:1f:8f:25:42:e0 dst_mac 02:f2:55:7a:1b:5c vlan_id 2041 vlan_ethtype ipv4 src_ip 94.18.160.9 dst_ip 33.236.123.106 ip_proto udp src_port 64196 dst_port 47620 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10856 flower src_mac 02:50:3d:84:6c:37 dst_mac 02:2e:11:f6:43:c3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10857 flower src_mac 02:53:76:0c:7b:8b dst_mac 02:20:55:1b:72:95 vlan_id 1782 vlan_ethtype ip src_ip 21.126.229.219 dst_ip 116.167.237.94 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10858 flower src_mac 02:b7:19:26:33:01 dst_mac 02:3f:de:eb:18:94 vlan_id 2052 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10859 flower src_mac 02:de:92:25:d6:9c dst_mac 02:68:fa:21:20:c6 vlan_id 1277 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10860 flower src_mac 02:58:c7:dd:4f:a3 dst_mac 02:8d:bc:a5:16:4f action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10861 flower src_mac 02:9e:12:47:99:86 dst_mac 02:54:7e:c2:bf:47 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10862 flower src_mac 02:0b:6a:1a:d6:4d dst_mac 02:17:47:8c:29:e1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10863 flower src_mac 02:1d:d5:b4:c2:b1 dst_mac 02:62:aa:71:9f:69 vlan_id 181 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10864 flower src_mac 02:a8:29:10:1b:8c dst_mac 02:1a:10:4b:d6:f6 vlan_id 592 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10865 flower src_mac 02:0a:e9:0f:1f:b1 dst_mac 02:09:23:53:7c:a4 src_ip 79.122.41.23 dst_ip 95.133.58.237 ip_proto icmp code 126 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10866 flower src_mac 02:c6:78:2d:ed:d6 dst_mac 02:f2:cd:d2:57:90 vlan_id 3397 vlan_ethtype 0x0800 src_ip 121.217.38.246 dst_ip 30.212.217.210 ip_proto tcp src_port 7174 dst_port 1835 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10867 flower src_mac 02:10:a7:b5:a8:a3 dst_mac 02:9f:50:72:42:e0 vlan_id 3347 vlan_ethtype ipv4 src_ip 38.139.209.229 dst_ip 42.138.12.230 ip_proto udp src_port 59743 dst_port 10055 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10868 flower src_mac 02:60:f1:97:a9:eb dst_mac 02:b8:cf:4c:46:9f vlan_id 359 vlan_ethtype ip src_ip 118.241.9.234 dst_ip 111.135.235.95 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10869 flower src_mac 02:bd:b9:b3:60:31 dst_mac 02:c2:b7:f2:02:a3 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10870 flower src_mac 02:d2:7e:39:05:e4 dst_mac 02:fb:65:24:5d:2e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10871 flower src_mac 02:32:e2:28:3e:d2 dst_mac 02:e0:af:4e:86:7b vlan_id 1032 vlan_ethtype ipv4 src_ip 119.156.255.59 dst_ip 90.228.37.49 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10872 flower src_mac 02:73:97:91:81:0a dst_mac 02:1a:b6:79:2e:a2 vlan_id 1474 vlan_ethtype ip src_ip 61.9.238.205 dst_ip 61.93.150.214 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10873 flower src_mac 02:69:8f:13:08:8a dst_mac 02:ef:94:58:6a:31 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10874 flower src_mac 02:2e:54:49:b3:61 dst_mac 02:ad:a9:b6:a6:1e vlan_id 297 vlan_ethtype ipv4 src_ip 54.26.160.52 dst_ip 101.167.149.189 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10875 flower src_mac 02:15:e3:d1:43:6c dst_mac 02:da:8a:96:bc:c3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10876 flower src_mac 02:e2:c2:3e:3c:77 dst_mac 02:d3:9b:c7:30:47 vlan_id 614 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10877 flower src_mac 02:d0:ef:ea:73:9e dst_mac 02:6d:af:77:70:69 src_ip 63.7.28.8 dst_ip 118.133.171.213 ip_proto udp src_port 29456 dst_port 60429 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10878 flower src_mac 02:cb:4e:ad:96:5e dst_mac 02:76:c1:cc:45:ae src_ip 72.227.165.21 dst_ip 59.174.235.3 ip_proto icmp code 128 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10879 flower src_mac 02:8c:05:d3:78:c4 dst_mac 02:18:e4:b8:a0:07 vlan_id 1842 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10880 flower src_mac 02:f1:ca:0f:d7:72 dst_mac 02:a8:ff:00:c1:7f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10881 flower src_mac 02:28:75:13:ff:d9 dst_mac 02:2e:ce:57:d8:69 vlan_id 2298 vlan_ethtype ip src_ip 54.117.148.186 dst_ip 43.200.118.225 ip_proto udp src_port 56642 dst_port 11307 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10882 flower src_mac 02:8d:d5:cb:ed:11 dst_mac 02:76:95:9e:60:5b vlan_id 1315 vlan_ethtype ip src_ip 84.14.120.23 dst_ip 121.48.252.185 ip_proto udp src_port 64755 dst_port 55815 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10883 flower src_mac 02:11:6f:da:6e:0f dst_mac 02:b2:dc:81:58:11 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10884 flower src_mac 02:7a:f7:9a:12:63 dst_mac 02:7f:e4:7e:93:07 src_ip 84.17.76.222 dst_ip 86.153.196.181 ip_proto icmp code 159 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10885 flower src_mac 02:15:67:9f:ee:71 dst_mac 02:fe:ce:20:88:d2 vlan_id 140 vlan_ethtype 0x0800 src_ip 16.118.177.107 dst_ip 80.44.170.190 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10886 flower src_mac 02:9e:af:cd:95:c6 dst_mac 02:28:4d:0b:a4:cd vlan_id 2192 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10887 flower src_mac 02:fa:7a:01:c7:c1 dst_mac 02:59:9f:37:1e:4e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10888 flower src_mac 02:69:76:70:8d:4b dst_mac 02:1f:27:69:e1:c5 vlan_id 1009 vlan_ethtype ip src_ip 98.117.41.204 dst_ip 15.228.68.68 ip_proto udp src_port 4621 dst_port 49561 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10889 flower src_mac 02:8d:8a:e6:fc:84 dst_mac 02:d7:b2:f1:75:b5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10890 flower src_mac 02:1f:76:cc:63:b2 dst_mac 02:13:a6:2c:2b:8e vlan_id 2062 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10891 flower src_mac 02:af:64:24:7e:55 dst_mac 02:70:dc:b3:6e:bc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10892 flower src_mac 02:89:f7:ba:99:c6 dst_mac 02:fa:2d:a0:e4:49 vlan_id 2205 vlan_ethtype ip src_ip 95.63.69.157 dst_ip 109.95.248.83 ip_proto udp src_port 18922 dst_port 40423 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10893 flower src_mac 02:fb:1b:53:38:22 dst_mac 02:e9:2b:33:ca:42 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10894 flower src_mac 02:ab:31:f5:b1:e6 dst_mac 02:f5:4c:88:ed:d6 vlan_id 2662 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10895 flower src_mac 02:10:92:67:a7:bd dst_mac 02:70:cb:b8:0b:3a vlan_id 3152 vlan_ethtype ip src_ip 60.230.204.61 dst_ip 38.118.204.240 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10896 flower src_mac 02:92:a2:a5:88:3f dst_mac 02:fc:c0:c0:a1:ce vlan_id 2731 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10897 flower src_mac 02:3c:23:65:9b:8d dst_mac 02:b4:62:27:e6:fb src_ip 37.104.215.43 dst_ip 112.155.171.29 ip_proto tcp src_port 4067 dst_port 10721 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10898 flower src_mac 02:7d:b5:ee:87:19 dst_mac 02:6a:69:5b:62:d4 vlan_id 2149 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10899 flower src_mac 02:fa:31:51:6f:11 dst_mac 02:f3:af:00:70:f8 vlan_id 2353 vlan_ethtype ipv4 src_ip 124.202.86.43 dst_ip 19.172.137.163 ip_proto udp src_port 57375 dst_port 42712 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10900 flower src_mac 02:7d:61:99:b6:9d dst_mac 02:e4:9b:64:3a:ca src_ip 116.174.127.93 dst_ip 97.186.212.100 ip_proto icmp code 185 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10901 flower src_mac 02:f9:03:bd:dd:6d dst_mac 02:ac:e8:c8:aa:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10902 flower src_mac 02:33:90:19:c9:14 dst_mac 02:fa:06:ee:de:22 vlan_id 1682 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10903 flower src_mac 02:b7:43:4f:ea:d4 dst_mac 02:98:12:49:51:d6 vlan_id 709 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10904 flower src_mac 02:ab:58:0c:1e:44 dst_mac 02:c7:14:0f:3b:aa action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10905 flower src_mac 02:d1:35:cc:5d:a9 dst_mac 02:04:63:82:6f:3a vlan_id 607 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10906 flower src_mac 02:6d:3f:4f:85:b3 dst_mac 02:a4:1a:37:ac:04 vlan_id 3639 vlan_ethtype ip src_ip 49.128.172.222 dst_ip 55.87.244.199 ip_proto tcp src_port 58288 dst_port 62978 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10907 flower src_mac 02:c3:72:df:51:3d dst_mac 02:ee:fa:1c:64:fe action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10908 flower src_mac 02:db:09:29:a9:76 dst_mac 02:82:6b:91:e0:86 action pass && tc filter add dev swp1 ingress protocol ip pref 10909 flower src_mac 02:5a:3c:43:ae:01 dst_mac 02:61:21:cc:3b:8c src_ip 125.1.11.40 dst_ip 42.38.208.227 ip_proto icmp code 114 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10910 flower src_mac 02:6e:cf:85:4e:ff dst_mac 02:0f:5d:ea:17:db action drop && tc filter add dev swp1 ingress protocol ip pref 10911 flower src_mac 02:b0:03:d8:65:ce dst_mac 02:cf:81:5a:5c:70 src_ip 106.211.184.12 dst_ip 67.166.162.58 ip_proto icmp code 104 type 17 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10912 flower src_mac 02:f0:d2:0f:ac:39 dst_mac 02:c7:2b:86:9e:f2 vlan_id 1498 vlan_ethtype ip src_ip 66.29.32.60 dst_ip 11.148.127.234 ip_proto tcp src_port 48576 dst_port 30414 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10913 flower src_mac 02:57:13:46:16:37 dst_mac 02:77:1b:07:74:64 vlan_id 3418 vlan_ethtype ipv4 src_ip 69.73.132.233 dst_ip 44.180.122.194 ip_proto udp src_port 1573 dst_port 53789 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10914 flower src_mac 02:4d:c0:63:7a:e4 dst_mac 02:19:29:9e:4d:f4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10915 flower src_mac 02:a7:79:d9:71:e0 dst_mac 02:bc:97:d9:b4:4c vlan_id 714 vlan_ethtype ip src_ip 71.121.183.219 dst_ip 50.148.44.120 action drop && tc filter add dev swp1 ingress protocol ip pref 10916 flower src_mac 02:2b:06:2b:48:4b dst_mac 02:2c:b0:0c:4c:89 src_ip 95.166.121.24 dst_ip 108.4.176.54 ip_proto icmp code 103 type 13 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10917 flower src_mac 02:19:85:93:ba:ad dst_mac 02:1d:12:06:31:31 src_ip 78.215.175.220 dst_ip 27.246.80.171 ip_proto icmp code 33 type 8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10918 flower src_mac 02:03:4e:52:f3:a3 dst_mac 02:9e:34:fe:06:01 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10919 flower src_mac 02:17:9b:ba:97:8e dst_mac 02:b2:f8:2c:a6:23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10920 flower src_mac 02:69:c1:19:5c:18 dst_mac 02:9a:59:9f:96:17 vlan_id 2797 vlan_ethtype ipv4 src_ip 80.206.113.218 dst_ip 28.95.23.77 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10921 flower src_mac 02:19:f0:6d:2e:84 dst_mac 02:c0:4f:7d:b3:c0 src_ip 83.181.2.200 dst_ip 90.219.105.146 ip_proto udp src_port 14033 dst_port 44525 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10922 flower src_mac 02:b2:b9:a5:b2:78 dst_mac 02:42:f7:05:a6:eb vlan_id 2398 vlan_ethtype ipv4 src_ip 49.32.60.48 dst_ip 40.94.190.121 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10923 flower src_mac 02:aa:98:d9:2b:60 dst_mac 02:ff:4c:12:80:25 src_ip 69.132.72.192 dst_ip 80.234.185.74 ip_proto udp src_port 59425 dst_port 42641 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10924 flower src_mac 02:80:77:1b:90:5f dst_mac 02:7e:87:a4:f4:45 vlan_id 3981 vlan_ethtype 0x0800 src_ip 59.244.150.60 dst_ip 120.2.228.212 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:28:bc:cc:14:7f dst_mac 02:89:dd:93:3a:af vlan_id 911 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10926 flower src_mac 02:95:24:c4:3f:28 dst_mac 02:fc:3a:f9:57:ea vlan_id 4046 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10927 flower src_mac 02:61:fd:1d:70:af dst_mac 02:7e:33:66:b1:7e src_ip 74.96.108.216 dst_ip 73.69.149.176 ip_proto tcp src_port 41271 dst_port 17204 action pass && tc filter add dev swp1 ingress protocol ip pref 10928 flower src_mac 02:e3:7c:1d:8c:56 dst_mac 02:40:70:5d:55:62 src_ip 43.127.171.43 dst_ip 72.85.159.129 ip_proto icmp code 5 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10929 flower src_mac 02:c8:c2:33:25:44 dst_mac 02:4e:50:1a:28:dd vlan_id 1012 vlan_ethtype 0x0800 src_ip 119.168.224.166 dst_ip 20.67.143.182 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10930 flower src_mac 02:54:07:f8:b1:25 dst_mac 02:e3:23:9c:c9:5f vlan_id 3892 vlan_ethtype ip src_ip 88.182.209.21 dst_ip 53.239.7.27 ip_proto tcp src_port 31927 dst_port 9654 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10931 flower src_mac 02:74:06:bd:13:ad dst_mac 02:09:a7:7c:c5:a9 vlan_id 1464 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10932 flower src_mac 02:2d:1f:a9:f8:72 dst_mac 02:d6:cb:af:19:de action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10933 flower src_mac 02:22:bc:48:bf:48 dst_mac 02:1f:50:a4:3e:70 vlan_id 3413 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10934 flower src_mac 02:18:a6:9a:2c:8b dst_mac 02:22:16:9e:fb:79 src_ip 54.63.108.140 dst_ip 55.22.153.176 ip_proto udp src_port 38578 dst_port 31754 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10935 flower src_mac 02:78:95:67:81:d2 dst_mac 02:65:31:02:17:cf vlan_id 1737 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10936 flower src_mac 02:47:fd:23:47:3b dst_mac 02:28:3a:c9:76:3e action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10937 flower src_mac 02:0a:96:39:e0:28 dst_mac 02:91:98:16:51:39 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10938 flower src_mac 02:5b:c9:9e:a7:f2 dst_mac 02:eb:76:2f:00:e5 vlan_id 2396 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10939 flower src_mac 02:91:61:da:3a:73 dst_mac 02:ab:14:f6:1a:ed vlan_id 1052 vlan_ethtype ip src_ip 96.29.5.56 dst_ip 75.156.9.7 ip_proto udp src_port 4333 dst_port 11731 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10940 flower src_mac 02:65:d7:c4:3f:fc dst_mac 02:e0:3a:ea:c6:f1 vlan_id 4074 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10941 flower src_mac 02:78:fe:dc:fd:32 dst_mac 02:69:9a:24:19:31 vlan_id 2621 vlan_ethtype ipv4 src_ip 26.193.196.75 dst_ip 87.246.24.127 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10942 flower src_mac 02:3f:9d:0c:b3:bd dst_mac 02:e5:78:36:a7:de vlan_id 2260 vlan_ethtype ip src_ip 72.181.81.99 dst_ip 93.53.249.10 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10943 flower src_mac 02:d8:6e:3c:55:37 dst_mac 02:95:16:f5:9b:82 src_ip 52.75.76.35 dst_ip 55.156.132.6 ip_proto icmp code 9 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10944 flower src_mac 02:dd:37:cb:f2:9f dst_mac 02:9e:33:bc:94:d2 vlan_id 1419 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10945 flower src_mac 02:e5:21:8f:2e:f2 dst_mac 02:2d:60:6c:e2:d5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10946 flower src_mac 02:a6:d8:7d:72:51 dst_mac 02:53:ce:7b:2b:8d vlan_id 1310 vlan_ethtype ipv4 src_ip 60.1.146.204 dst_ip 47.4.37.102 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10947 flower src_mac 02:75:e2:6e:e0:0b dst_mac 02:61:bc:fc:83:f3 vlan_id 1926 vlan_ethtype ip src_ip 118.45.194.169 dst_ip 84.118.59.162 ip_proto udp src_port 5761 dst_port 17035 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10948 flower src_mac 02:8e:d8:1a:9f:5c dst_mac 02:41:d4:64:03:f9 vlan_id 453 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10949 flower src_mac 02:bd:7f:5b:d8:bc dst_mac 02:7c:44:07:9d:83 src_ip 74.106.192.230 dst_ip 75.82.250.147 ip_proto udp src_port 30968 dst_port 30657 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10950 flower src_mac 02:f9:78:27:98:2d dst_mac 02:14:cc:65:d6:69 src_ip 72.153.103.119 dst_ip 112.205.18.248 ip_proto icmp code 234 type 5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10951 flower src_mac 02:96:6d:93:11:80 dst_mac 02:5a:b5:41:9d:74 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10952 flower src_mac 02:27:bf:89:cb:56 dst_mac 02:bb:08:f2:25:61 vlan_id 1595 vlan_ethtype 0x0800 src_ip 17.249.129.232 dst_ip 72.140.69.147 ip_proto udp src_port 50310 dst_port 6119 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:0f:ad:bd:b2:aa dst_mac 02:43:ab:db:52:1a vlan_id 2663 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10954 flower src_mac 02:db:b4:0a:54:4a dst_mac 02:0a:2b:73:20:3f src_ip 95.221.26.198 dst_ip 51.215.107.116 ip_proto icmp code 156 type 15 action drop && tc filter add dev swp1 ingress protocol ip pref 10955 flower src_mac 02:f6:57:47:9b:a8 dst_mac 02:68:5b:ac:71:33 src_ip 123.206.178.31 dst_ip 91.54.248.189 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10956 flower src_mac 02:1c:09:34:8b:ea dst_mac 02:1c:b1:54:4f:c5 vlan_id 2134 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10957 flower src_mac 02:36:10:49:b5:d4 dst_mac 02:c6:7c:0d:16:62 vlan_id 3692 vlan_ethtype ip src_ip 92.100.90.161 dst_ip 22.232.2.211 ip_proto tcp src_port 65504 dst_port 15195 action pass && tc filter add dev swp1 ingress protocol ip pref 10958 flower src_mac 02:94:43:ff:ce:46 dst_mac 02:11:a2:75:43:45 src_ip 13.241.86.39 dst_ip 73.62.56.90 ip_proto udp src_port 57034 dst_port 16879 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10959 flower src_mac 02:0a:2e:af:c3:81 dst_mac 02:56:41:69:ee:1d vlan_id 645 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10960 flower src_mac 02:19:17:ff:88:1e dst_mac 02:76:c0:83:a9:42 vlan_id 563 vlan_ethtype ipv4 src_ip 43.15.102.69 dst_ip 34.134.185.2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10961 flower src_mac 02:ce:1f:c9:a0:a9 dst_mac 02:be:c6:b9:b2:ea vlan_id 2799 vlan_ethtype 0x0800 src_ip 47.135.13.12 dst_ip 39.65.188.179 ip_proto udp src_port 57278 dst_port 39492 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10962 flower src_mac 02:34:39:a8:a9:7b dst_mac 02:2f:6a:94:dd:0a vlan_id 1692 vlan_ethtype ipv4 src_ip 50.97.62.144 dst_ip 49.94.159.98 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10963 flower src_mac 02:02:30:13:c8:1b dst_mac 02:f9:46:5b:79:9e action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10964 flower src_mac 02:f4:31:80:00:39 dst_mac 02:7f:8d:28:bc:73 src_ip 95.213.254.167 dst_ip 80.132.28.184 ip_proto udp src_port 15803 dst_port 15673 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10965 flower src_mac 02:e1:71:54:84:21 dst_mac 02:5f:f0:13:26:e8 src_ip 63.127.64.161 dst_ip 71.111.164.12 ip_proto icmp code 34 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10966 flower src_mac 02:a5:e0:ce:f1:38 dst_mac 02:e2:e6:2a:0a:71 vlan_id 924 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10967 flower src_mac 02:af:b1:93:cc:67 dst_mac 02:55:32:e4:a5:6c src_ip 86.218.197.76 dst_ip 74.55.6.247 ip_proto udp src_port 4049 dst_port 61132 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10968 flower src_mac 02:7a:39:4b:00:6f dst_mac 02:80:9b:ce:06:0b src_ip 89.233.234.211 dst_ip 25.185.53.165 ip_proto tcp src_port 34514 dst_port 3321 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:fc:7c:91:2e:89 dst_mac 02:b2:e8:49:d9:99 vlan_id 1056 vlan_ethtype ip src_ip 77.216.47.184 dst_ip 73.234.210.81 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10970 flower src_mac 02:62:26:ad:4d:ea dst_mac 02:8c:4a:38:a6:db action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10971 flower src_mac 02:ee:a2:f0:98:a9 dst_mac 02:82:af:86:bd:99 vlan_id 2034 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10972 flower src_mac 02:cf:56:ef:55:ac dst_mac 02:dd:80:bf:20:fd vlan_id 2979 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10973 flower src_mac 02:de:20:aa:f5:56 dst_mac 02:cd:c6:9c:fb:d3 src_ip 121.43.100.45 dst_ip 118.221.78.16 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10974 flower src_mac 02:aa:69:4d:a5:de dst_mac 02:75:df:ca:b9:b6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10975 flower src_mac 02:f5:86:ef:33:9a dst_mac 02:0a:8a:e9:89:1d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10976 flower src_mac 02:c4:55:a7:28:70 dst_mac 02:cf:ea:ea:02:b8 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10977 flower src_mac 02:cc:30:96:da:c1 dst_mac 02:e0:91:8e:36:10 src_ip 86.72.227.194 dst_ip 68.230.196.153 ip_proto udp src_port 20963 dst_port 47394 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10978 flower src_mac 02:a1:cc:32:cc:6c dst_mac 02:ce:3d:ae:99:3f vlan_id 717 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10979 flower src_mac 02:af:51:1f:71:34 dst_mac 02:a4:dd:ef:f4:ce vlan_id 755 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10980 flower src_mac 02:83:82:2f:01:fe dst_mac 02:30:70:3c:73:74 vlan_id 2238 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:60:d3:ed:9e:6c dst_mac 02:fe:15:4a:90:4b vlan_id 3944 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10982 flower src_mac 02:d8:58:c1:a0:49 dst_mac 02:b9:4a:25:6c:4f src_ip 57.31.78.160 dst_ip 62.255.88.1 ip_proto udp src_port 9606 dst_port 5860 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10983 flower src_mac 02:51:42:20:bc:e9 dst_mac 02:9e:3a:98:8d:ec vlan_id 1115 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10984 flower src_mac 02:b8:cb:9c:7c:86 dst_mac 02:a7:4a:94:b2:e3 vlan_id 195 vlan_ethtype ipv4 src_ip 103.77.185.235 dst_ip 77.9.137.126 ip_proto tcp src_port 54942 dst_port 20182 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10985 flower src_mac 02:62:b3:8e:9f:29 dst_mac 02:bc:6e:ec:74:e5 action trap && tc filter add dev swp1 ingress protocol ip pref 10986 flower src_mac 02:aa:fa:e7:49:57 dst_mac 02:3f:88:64:e1:0d src_ip 98.176.38.157 dst_ip 21.169.227.246 ip_proto icmp code 109 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10987 flower src_mac 02:74:46:7e:80:f8 dst_mac 02:8d:fe:9a:0d:c8 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10988 flower src_mac 02:6c:ac:22:c3:fb dst_mac 02:14:a1:3e:41:15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10989 flower src_mac 02:d3:4e:4e:b3:d2 dst_mac 02:e8:11:68:46:3a vlan_id 1571 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10990 flower src_mac 02:bc:4d:1e:c7:96 dst_mac 02:13:19:b1:2e:50 src_ip 74.229.232.158 dst_ip 111.217.0.87 ip_proto icmp code 133 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10991 flower src_mac 02:b1:40:bb:1b:53 dst_mac 02:15:e3:6d:e3:74 vlan_id 1083 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10992 flower src_mac 02:dc:87:0b:46:58 dst_mac 02:19:16:99:7d:1f vlan_id 1588 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10993 flower src_mac 02:98:16:27:c2:bf dst_mac 02:fb:72:39:1a:a1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10994 flower src_mac 02:64:8b:ad:b3:9a dst_mac 02:fd:78:46:3f:11 vlan_id 1215 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10995 flower src_mac 02:97:9c:13:5c:a4 dst_mac 02:19:c2:0d:fc:74 src_ip 17.215.50.82 dst_ip 68.161.154.146 ip_proto icmp code 204 type 8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10996 flower src_mac 02:dd:3a:ac:0c:df dst_mac 02:db:40:ab:a1:96 vlan_id 2246 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10997 flower src_mac 02:47:69:3a:5e:5c dst_mac 02:68:85:87:76:99 vlan_id 2503 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10998 flower src_mac 02:7c:c7:2a:75:0c dst_mac 02:76:d7:b4:06:1e action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10999 flower src_mac 02:cd:9b:a2:82:7e dst_mac 02:c7:d1:61:81:31 action trap && tc filter add dev swp1 ingress protocol ip pref 11000 flower src_mac 02:c4:b6:c6:87:1e dst_mac 02:75:19:20:f9:de src_ip 98.191.167.196 dst_ip 126.255.192.53 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11001 flower src_mac 02:fb:c8:07:86:8a dst_mac 02:82:3d:ab:54:09 vlan_id 3554 vlan_ethtype 0x0800 src_ip 65.166.20.104 dst_ip 70.173.42.39 ip_proto tcp src_port 49370 dst_port 32782 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11002 flower src_mac 02:01:51:9a:47:3e dst_mac 02:81:1d:25:45:fd src_ip 87.216.86.247 dst_ip 18.115.151.36 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11003 flower src_mac 02:71:0a:0d:d2:b3 dst_mac 02:f3:0d:e1:17:4c vlan_id 2300 vlan_ethtype ip src_ip 32.20.214.166 dst_ip 30.15.53.74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11004 flower src_mac 02:26:41:e1:1a:46 dst_mac 02:87:7f:98:7e:d6 vlan_id 3005 vlan_ethtype ip src_ip 116.225.91.116 dst_ip 94.199.158.78 ip_proto udp src_port 8805 dst_port 20883 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11005 flower src_mac 02:59:06:b1:eb:fa dst_mac 02:1d:ff:87:8f:a0 src_ip 78.130.105.203 dst_ip 98.103.196.144 ip_proto udp src_port 53109 dst_port 61263 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11006 flower src_mac 02:91:c3:b4:e1:c2 dst_mac 02:fc:2f:66:3d:01 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11007 flower src_mac 02:b3:0a:56:0f:ee dst_mac 02:f5:8e:04:25:03 vlan_id 696 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11008 flower src_mac 02:89:e9:00:e7:89 dst_mac 02:43:98:22:3a:f4 vlan_id 2048 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:b8:fc:0d:4f:63 dst_mac 02:2a:ef:4c:07:35 vlan_id 3515 vlan_ethtype ipv4 src_ip 121.139.120.42 dst_ip 13.56.150.128 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11010 flower src_mac 02:7c:c8:fc:f9:39 dst_mac 02:cc:c1:59:60:8b action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11011 flower src_mac 02:73:58:fe:9f:72 dst_mac 02:47:8d:0a:1b:ed action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11012 flower src_mac 02:fc:e6:01:4d:1b dst_mac 02:db:86:a2:a6:bd action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11013 flower src_mac 02:65:b5:e0:45:11 dst_mac 02:ff:95:27:bf:c5 vlan_id 1276 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11014 flower src_mac 02:f1:0a:4e:df:1c dst_mac 02:b4:cb:12:52:67 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11015 flower src_mac 02:fb:e1:8b:30:03 dst_mac 02:5b:e0:d2:7d:8e vlan_id 387 vlan_ethtype ip src_ip 33.137.20.247 dst_ip 68.117.64.23 ip_proto tcp src_port 2611 dst_port 40390 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11016 flower src_mac 02:ac:cc:d8:82:80 dst_mac 02:7f:df:b6:2b:35 vlan_id 2235 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11017 flower src_mac 02:4f:82:6d:99:4d dst_mac 02:4c:94:98:02:33 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11018 flower src_mac 02:69:bf:9a:e1:ea dst_mac 02:cb:dd:5d:0b:2b vlan_id 3090 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11019 flower src_mac 02:69:ba:da:73:59 dst_mac 02:57:a7:59:88:f5 vlan_id 3893 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11020 flower src_mac 02:db:ba:b9:85:c6 dst_mac 02:a5:2d:18:c1:91 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11021 flower src_mac 02:dd:5e:11:a8:b3 dst_mac 02:59:9e:2a:d3:da src_ip 104.153.160.242 dst_ip 80.231.98.111 ip_proto icmp code 110 type 14 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11022 flower src_mac 02:a2:27:bb:37:9c dst_mac 02:3b:c1:ac:49:d9 src_ip 95.81.9.145 dst_ip 58.156.60.227 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11023 flower src_mac 02:cc:e9:2a:ad:cd dst_mac 02:97:fc:6b:2d:7c vlan_id 3436 vlan_ethtype ipv4 src_ip 114.35.42.50 dst_ip 121.126.14.170 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11024 flower src_mac 02:c4:47:9e:a4:dc dst_mac 02:95:fe:b1:b2:a5 src_ip 18.34.241.12 dst_ip 72.59.236.208 ip_proto tcp src_port 9583 dst_port 25036 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11025 flower src_mac 02:9b:d5:eb:a7:35 dst_mac 02:fd:bc:fe:83:b5 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11026 flower src_mac 02:4d:ad:f0:57:e9 dst_mac 02:43:7a:3f:6e:e2 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11027 flower src_mac 02:d1:d8:da:2a:2f dst_mac 02:3b:21:79:c7:61 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11028 flower src_mac 02:87:37:b9:b3:5d dst_mac 02:90:b7:04:d4:4f src_ip 20.54.220.77 dst_ip 94.52.116.245 ip_proto icmp code 238 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11029 flower src_mac 02:b2:ce:ea:4c:20 dst_mac 02:63:e8:fe:89:11 vlan_id 1733 vlan_ethtype ip src_ip 125.72.187.161 dst_ip 36.111.231.124 ip_proto udp src_port 59404 dst_port 19 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11030 flower src_mac 02:28:8c:79:8c:46 dst_mac 02:01:03:52:cb:4e src_ip 18.70.224.156 dst_ip 121.163.206.154 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11031 flower src_mac 02:c5:06:54:4a:46 dst_mac 02:c7:44:90:c8:ba action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11032 flower src_mac 02:01:d7:55:e6:48 dst_mac 02:18:45:fb:53:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11033 flower src_mac 02:28:87:d6:76:e6 dst_mac 02:9a:05:5e:25:d8 vlan_id 1075 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11034 flower src_mac 02:f8:57:f2:48:4d dst_mac 02:a2:fb:9a:cb:85 src_ip 76.16.39.199 dst_ip 38.81.119.20 ip_proto icmp code 91 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11035 flower src_mac 02:af:59:4d:a9:8e dst_mac 02:13:5e:bd:04:9b vlan_id 3394 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11036 flower src_mac 02:18:0d:3d:b5:8d dst_mac 02:a7:68:ba:f7:fd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11037 flower src_mac 02:01:df:c5:e0:6d dst_mac 02:e9:1f:f9:e1:dd vlan_id 1392 vlan_ethtype ipv4 src_ip 123.174.32.242 dst_ip 106.160.115.59 ip_proto udp src_port 24340 dst_port 26918 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11038 flower src_mac 02:1f:6d:eb:74:7f dst_mac 02:08:6c:27:b7:e1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11039 flower src_mac 02:7d:f6:bb:87:1f dst_mac 02:97:85:62:06:ab vlan_id 3805 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11040 flower src_mac 02:8b:2f:ac:19:f7 dst_mac 02:8f:f4:a0:b9:34 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11041 flower src_mac 02:10:5f:5d:d8:ae dst_mac 02:16:d9:aa:48:e1 src_ip 48.140.143.77 dst_ip 34.155.20.96 ip_proto icmp code 22 type 17 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11042 flower src_mac 02:87:52:b8:47:c6 dst_mac 02:de:0e:06:5b:72 vlan_id 3310 vlan_ethtype ipv4 src_ip 34.21.95.160 dst_ip 77.123.144.141 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11043 flower src_mac 02:73:2c:0c:78:e1 dst_mac 02:2a:7d:56:1f:87 vlan_id 827 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11044 flower src_mac 02:a2:65:4d:df:57 dst_mac 02:03:f4:41:aa:27 vlan_id 188 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11045 flower src_mac 02:7a:de:f8:65:52 dst_mac 02:7f:d5:8b:18:4e action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11046 flower src_mac 02:bd:28:bb:80:d7 dst_mac 02:0e:63:aa:7a:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11047 flower src_mac 02:bd:47:3f:c6:4f dst_mac 02:bc:05:6f:92:e8 vlan_id 1655 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11048 flower src_mac 02:e5:ab:61:9b:b9 dst_mac 02:70:ff:2e:96:87 src_ip 122.134.182.89 dst_ip 88.175.74.245 ip_proto udp src_port 19079 dst_port 7615 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11049 flower src_mac 02:83:d6:8e:ca:4f dst_mac 02:26:3d:c5:c2:7d vlan_id 2806 vlan_ethtype 0x0800 src_ip 72.140.177.146 dst_ip 65.73.91.190 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:96:eb:64:24:18 dst_mac 02:8b:f4:39:cd:75 vlan_id 4063 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11051 flower src_mac 02:81:f2:3b:e9:22 dst_mac 02:fa:f7:44:00:76 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11052 flower src_mac 02:89:ae:5c:9e:8c dst_mac 02:31:e3:6b:25:ec vlan_id 2706 vlan_ethtype 0x0800 src_ip 91.57.103.28 dst_ip 77.21.170.181 ip_proto udp src_port 16499 dst_port 20748 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11053 flower src_mac 02:4e:cc:e9:67:2b dst_mac 02:90:a5:9b:0b:ab action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11054 flower src_mac 02:1c:46:86:20:30 dst_mac 02:63:a7:f7:d0:8d vlan_id 2046 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11055 flower src_mac 02:75:24:24:6a:09 dst_mac 02:1e:84:1f:f3:b3 src_ip 22.158.120.220 dst_ip 102.125.231.16 ip_proto tcp src_port 13092 dst_port 48935 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11056 flower src_mac 02:d3:85:ab:ab:17 dst_mac 02:cf:b0:80:9e:45 vlan_id 3999 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11057 flower src_mac 02:7a:84:c0:0d:75 dst_mac 02:af:3a:ab:7c:b0 vlan_id 3836 vlan_ethtype 0x0800 src_ip 36.14.246.32 dst_ip 76.49.219.91 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11058 flower src_mac 02:b8:0b:e0:94:6b dst_mac 02:dc:e8:aa:2c:ca src_ip 82.187.1.25 dst_ip 72.206.170.142 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11059 flower src_mac 02:90:d0:e5:59:f1 dst_mac 02:28:43:f3:08:2a action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11060 flower src_mac 02:e5:c1:2a:58:24 dst_mac 02:f9:e3:45:ce:49 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11061 flower src_mac 02:63:a3:81:75:4c dst_mac 02:67:16:2b:42:98 src_ip 45.129.156.155 dst_ip 52.232.14.131 ip_proto tcp src_port 43134 dst_port 6630 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11062 flower src_mac 02:ff:49:f1:69:7b dst_mac 02:06:b7:e4:cb:81 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11063 flower src_mac 02:92:db:e9:16:a6 dst_mac 02:39:f9:ac:42:6d vlan_id 214 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11064 flower src_mac 02:0e:fa:96:d3:69 dst_mac 02:91:2c:c0:7d:c9 vlan_id 3127 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11065 flower src_mac 02:7a:c4:cf:ac:ce dst_mac 02:59:da:58:cf:d1 vlan_id 1327 vlan_ethtype ip src_ip 116.22.121.108 dst_ip 96.252.190.106 ip_proto udp src_port 27866 dst_port 41481 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11066 flower src_mac 02:55:58:7b:e2:66 dst_mac 02:7c:04:b5:fa:3b vlan_id 3191 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11067 flower src_mac 02:e9:06:19:6f:24 dst_mac 02:57:a0:0d:0a:75 vlan_id 2328 vlan_ethtype ipv4 src_ip 98.114.119.54 dst_ip 108.29.225.118 ip_proto tcp src_port 48908 dst_port 968 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11068 flower src_mac 02:47:3a:4a:ef:b1 dst_mac 02:fe:02:d7:34:f8 vlan_id 2199 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11069 flower src_mac 02:11:22:5f:5e:9b dst_mac 02:05:4d:e9:fc:52 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11070 flower src_mac 02:20:37:f0:04:4c dst_mac 02:be:e6:8a:91:5d action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11071 flower src_mac 02:b1:52:c5:6b:3a dst_mac 02:3e:18:aa:ee:2e action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11072 flower src_mac 02:ea:32:c7:ed:a3 dst_mac 02:2c:45:c3:df:6f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11073 flower src_mac 02:1d:9c:e6:5e:63 dst_mac 02:4a:5a:ec:c5:f6 vlan_id 2283 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11074 flower src_mac 02:53:34:f6:b5:4a dst_mac 02:37:c2:16:ab:2e src_ip 126.113.85.213 dst_ip 117.102.177.168 ip_proto udp src_port 49080 dst_port 8605 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11075 flower src_mac 02:ac:7c:c0:65:37 dst_mac 02:4e:58:28:ba:1e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11076 flower src_mac 02:d0:d2:66:94:88 dst_mac 02:df:d2:5e:02:ac vlan_id 2528 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11077 flower src_mac 02:e3:06:dc:0b:c7 dst_mac 02:5d:88:a6:ea:b6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11078 flower src_mac 02:f3:6d:1a:f8:45 dst_mac 02:b7:ff:d2:58:86 vlan_id 1957 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11079 flower src_mac 02:c1:09:eb:e4:19 dst_mac 02:4a:b8:b3:cd:05 vlan_id 2724 vlan_ethtype 0x0800 src_ip 29.157.191.144 dst_ip 115.3.79.162 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11080 flower src_mac 02:f5:c0:a5:d4:96 dst_mac 02:73:8f:6e:f0:3c vlan_id 1260 vlan_ethtype 0x0800 src_ip 47.21.180.248 dst_ip 11.33.158.58 action pass && tc filter add dev swp1 ingress protocol ip pref 11081 flower src_mac 02:5c:7f:2b:af:15 dst_mac 02:ac:0e:49:36:9a src_ip 45.205.71.161 dst_ip 70.61.133.20 ip_proto icmp code 205 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11082 flower src_mac 02:08:13:29:be:a8 dst_mac 02:34:91:6f:2f:08 vlan_id 445 vlan_ethtype 0x0800 src_ip 59.119.248.202 dst_ip 106.105.254.115 ip_proto tcp src_port 61051 dst_port 27471 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11083 flower src_mac 02:ce:d1:14:b6:6c dst_mac 02:70:01:50:18:05 vlan_id 3550 vlan_ethtype ipv4 src_ip 103.225.88.218 dst_ip 69.76.223.171 ip_proto tcp src_port 24240 dst_port 23418 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11084 flower src_mac 02:e2:ff:9b:5d:88 dst_mac 02:f0:55:09:da:ed src_ip 11.115.162.186 dst_ip 53.164.195.187 ip_proto tcp src_port 23964 dst_port 14022 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11085 flower src_mac 02:7a:71:a7:1d:a5 dst_mac 02:1f:64:d5:ce:4d src_ip 41.154.23.125 dst_ip 75.42.159.11 ip_proto udp src_port 50851 dst_port 47262 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11086 flower src_mac 02:61:4e:81:26:7f dst_mac 02:9b:fc:3b:e0:8a vlan_id 1492 vlan_ethtype 0x0800 src_ip 40.155.254.237 dst_ip 62.128.148.166 ip_proto tcp src_port 47189 dst_port 62526 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11087 flower src_mac 02:18:c3:2f:8f:36 dst_mac 02:8e:65:a4:0a:7e vlan_id 2985 vlan_ethtype ipv4 src_ip 122.239.150.142 dst_ip 30.30.132.26 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11088 flower src_mac 02:25:3a:ae:18:da dst_mac 02:6b:95:52:03:0f vlan_id 3352 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:15:e5:bd:99:86 dst_mac 02:43:d7:66:7c:14 vlan_id 829 vlan_ethtype ip src_ip 109.224.43.98 dst_ip 58.239.196.39 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11090 flower src_mac 02:f0:dc:41:0b:18 dst_mac 02:1b:cf:0f:f8:d5 vlan_id 879 vlan_ethtype ipv4 src_ip 81.6.26.197 dst_ip 69.109.197.214 ip_proto udp src_port 5758 dst_port 53071 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11091 flower src_mac 02:33:73:43:39:dc dst_mac 02:60:d6:75:b9:1b vlan_id 339 vlan_ethtype ipv4 src_ip 41.169.246.139 dst_ip 40.31.46.32 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11092 flower src_mac 02:24:73:db:fa:44 dst_mac 02:45:60:c8:17:02 vlan_id 1168 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11093 flower src_mac 02:e3:f8:d5:16:57 dst_mac 02:57:94:24:52:01 vlan_id 4001 vlan_ethtype ip src_ip 113.100.6.96 dst_ip 81.238.52.244 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11094 flower src_mac 02:9d:3a:41:d9:a8 dst_mac 02:2b:8e:ea:5e:87 vlan_id 599 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11095 flower src_mac 02:14:0b:70:91:4f dst_mac 02:b6:82:0c:67:4d vlan_id 2573 vlan_ethtype ip src_ip 78.121.163.233 dst_ip 58.168.113.116 ip_proto udp src_port 32698 dst_port 48858 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11096 flower src_mac 02:ad:51:3b:41:52 dst_mac 02:98:ff:07:de:eb vlan_id 1018 vlan_ethtype ip src_ip 52.175.203.180 dst_ip 25.144.166.177 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11097 flower src_mac 02:18:b8:7a:c2:c1 dst_mac 02:79:c4:ee:09:fc src_ip 57.51.94.72 dst_ip 126.254.173.179 ip_proto icmp code 137 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 11098 flower src_mac 02:4a:72:3c:c1:74 dst_mac 02:aa:6a:36:36:f8 src_ip 73.178.243.164 dst_ip 21.254.21.56 ip_proto tcp src_port 49405 dst_port 61988 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11099 flower src_mac 02:35:ef:8c:92:02 dst_mac 02:ac:eb:bf:93:7f action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11100 flower src_mac 02:4f:3b:3d:df:90 dst_mac 02:da:d8:c1:54:5d src_ip 46.247.110.107 dst_ip 55.192.164.170 ip_proto tcp src_port 18247 dst_port 47086 action trap && tc filter add dev swp1 ingress protocol ip pref 11101 flower src_mac 02:4e:de:16:62:b1 dst_mac 02:64:d0:f9:d0:60 src_ip 103.146.189.118 dst_ip 62.34.109.17 ip_proto icmp code 77 type 5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11102 flower src_mac 02:9b:07:49:41:89 dst_mac 02:fc:3a:3d:5f:e2 src_ip 45.9.110.78 dst_ip 121.163.200.194 ip_proto icmp code 192 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11103 flower src_mac 02:29:4e:70:e6:dc dst_mac 02:e4:ed:55:61:af vlan_id 2565 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:3c:ce:c3:06:7e dst_mac 02:bb:66:12:93:0b vlan_id 2997 vlan_ethtype ip src_ip 82.255.141.97 dst_ip 47.61.115.34 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11105 flower src_mac 02:cf:a9:66:cb:64 dst_mac 02:85:7e:ce:57:6f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11106 flower src_mac 02:c5:2d:40:5a:1f dst_mac 02:c4:5d:99:fb:8c src_ip 28.21.122.66 dst_ip 78.144.158.117 ip_proto udp src_port 22648 dst_port 32069 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11107 flower src_mac 02:05:64:f9:d3:a8 dst_mac 02:ff:0e:34:67:61 vlan_id 3889 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:09:db:ef:bc:69 dst_mac 02:c0:60:99:7e:dc vlan_id 3030 vlan_ethtype ipv4 src_ip 14.55.23.22 dst_ip 122.56.167.47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11109 flower src_mac 02:06:34:26:76:73 dst_mac 02:f7:a5:a2:a1:93 vlan_id 13 vlan_ethtype 0x0800 src_ip 86.230.63.238 dst_ip 68.10.141.142 ip_proto udp src_port 5494 dst_port 43082 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11110 flower src_mac 02:6a:d8:4d:51:3f dst_mac 02:83:fc:62:a0:0b vlan_id 3070 vlan_ethtype ip src_ip 91.122.18.113 dst_ip 108.122.48.169 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11111 flower src_mac 02:87:0a:76:a1:9a dst_mac 02:fe:2b:2c:61:d5 vlan_id 3991 vlan_ethtype ip src_ip 27.39.10.87 dst_ip 90.83.99.198 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11112 flower src_mac 02:2c:4d:5d:21:39 dst_mac 02:29:ae:c1:ca:b2 vlan_id 1065 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11113 flower src_mac 02:96:9c:60:1f:f8 dst_mac 02:05:27:36:94:97 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11114 flower src_mac 02:d7:2b:80:b7:6e dst_mac 02:f4:9d:46:81:49 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11115 flower src_mac 02:38:7a:99:c1:52 dst_mac 02:5b:26:33:e3:5e vlan_id 1299 vlan_ethtype ip src_ip 59.191.140.241 dst_ip 124.170.110.179 ip_proto tcp src_port 55851 dst_port 28477 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11116 flower src_mac 02:76:3d:70:98:a5 dst_mac 02:fd:7d:64:2a:08 vlan_id 3236 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11117 flower src_mac 02:1c:d2:6b:de:46 dst_mac 02:58:03:b9:56:a3 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11118 flower src_mac 02:9f:6d:b3:8c:af dst_mac 02:b5:2c:dc:96:a4 src_ip 80.120.183.136 dst_ip 42.245.19.120 ip_proto icmp code 45 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11119 flower src_mac 02:d2:0c:cd:9b:86 dst_mac 02:72:94:4b:ad:7f vlan_id 3322 vlan_ethtype 0x0800 src_ip 52.113.77.210 dst_ip 99.74.123.197 action drop && tc filter add dev swp1 ingress protocol ip pref 11120 flower src_mac 02:dc:cd:a3:6f:cb dst_mac 02:eb:4f:78:a2:47 src_ip 36.33.207.39 dst_ip 34.2.218.79 ip_proto udp src_port 56453 dst_port 22815 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11121 flower src_mac 02:4b:27:1d:3b:8a dst_mac 02:62:03:23:0c:b8 vlan_id 3302 vlan_ethtype ip src_ip 71.70.153.228 dst_ip 23.128.232.51 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11122 flower src_mac 02:d9:79:1d:c1:f0 dst_mac 02:ee:a4:54:ff:e0 vlan_id 2725 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11123 flower src_mac 02:dd:1b:4d:51:9f dst_mac 02:06:a7:74:f0:a7 vlan_id 930 vlan_ethtype ipv4 src_ip 53.144.114.129 dst_ip 49.89.79.46 ip_proto udp src_port 56334 dst_port 9106 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11124 flower src_mac 02:41:65:a4:d7:6b dst_mac 02:7b:17:7c:f4:87 vlan_id 3110 vlan_ethtype ipv4 src_ip 16.90.216.86 dst_ip 100.13.115.62 ip_proto udp src_port 16858 dst_port 3530 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11125 flower src_mac 02:1c:be:2f:c7:27 dst_mac 02:3d:a8:b1:bd:5c action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11126 flower src_mac 02:14:f1:33:20:fc dst_mac 02:89:fb:9f:53:8d vlan_id 591 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11127 flower src_mac 02:c2:63:a4:06:cb dst_mac 02:96:64:17:8d:55 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11128 flower src_mac 02:fb:86:03:92:9c dst_mac 02:85:30:fa:da:6a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11129 flower src_mac 02:1a:50:fe:ad:23 dst_mac 02:04:89:1c:59:7d vlan_id 3059 vlan_ethtype ip src_ip 45.249.25.29 dst_ip 85.119.210.31 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11130 flower src_mac 02:a6:5e:ed:ed:a2 dst_mac 02:2d:fb:c5:4b:33 src_ip 83.98.77.94 dst_ip 50.216.164.3 ip_proto icmp code 11 type 12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11131 flower src_mac 02:62:f0:88:1c:7d dst_mac 02:22:28:bd:f9:2a vlan_id 3342 vlan_ethtype ipv4 src_ip 59.14.9.227 dst_ip 75.113.168.121 ip_proto tcp src_port 6722 dst_port 60519 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11132 flower src_mac 02:46:e7:ed:e5:4a dst_mac 02:55:6c:7a:b2:d9 src_ip 61.70.209.99 dst_ip 106.61.153.235 ip_proto icmp code 205 type 18 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11133 flower src_mac 02:4c:01:bf:5b:bd dst_mac 02:bb:4d:a1:e2:ef action pass && tc filter add dev swp1 ingress protocol ip pref 11134 flower src_mac 02:04:68:49:ec:ee dst_mac 02:56:dd:48:39:27 src_ip 13.192.196.94 dst_ip 22.182.203.34 ip_proto icmp code 109 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11135 flower src_mac 02:2b:9d:86:0d:16 dst_mac 02:45:7b:e2:e0:7d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11136 flower src_mac 02:eb:dc:11:00:fb dst_mac 02:eb:7c:be:33:7c vlan_id 404 vlan_ethtype 0x0800 src_ip 14.92.235.73 dst_ip 75.223.97.67 ip_proto tcp src_port 8014 dst_port 48639 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11137 flower src_mac 02:f3:23:c6:19:36 dst_mac 02:fb:77:81:df:17 vlan_id 1676 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11138 flower src_mac 02:42:b5:d0:77:cf dst_mac 02:77:01:0f:03:22 src_ip 103.228.213.209 dst_ip 18.199.225.189 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11139 flower src_mac 02:80:2b:45:84:95 dst_mac 02:ae:dc:07:07:61 vlan_id 28 vlan_ethtype 0x0800 src_ip 77.161.104.6 dst_ip 25.236.126.60 ip_proto udp src_port 44401 dst_port 62183 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11140 flower src_mac 02:c5:98:bf:90:b8 dst_mac 02:4e:42:ed:32:10 vlan_id 820 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11141 flower src_mac 02:d5:a5:33:e5:92 dst_mac 02:51:d4:db:2d:fd src_ip 58.16.27.48 dst_ip 44.206.68.127 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11142 flower src_mac 02:2e:ba:25:ee:88 dst_mac 02:db:11:d7:2f:ac vlan_id 4064 vlan_ethtype 0x0800 src_ip 77.7.129.70 dst_ip 28.99.3.125 ip_proto udp src_port 34172 dst_port 33768 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11143 flower src_mac 02:78:fd:8a:c2:8a dst_mac 02:80:30:22:61:7a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11144 flower src_mac 02:b8:9b:dd:d7:76 dst_mac 02:9b:26:3a:c3:e2 vlan_id 2180 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11145 flower src_mac 02:19:3c:ba:96:7d dst_mac 02:e0:af:f4:b1:89 src_ip 110.48.41.3 dst_ip 112.186.106.120 ip_proto tcp src_port 36147 dst_port 39692 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11146 flower src_mac 02:98:00:0b:3e:3d dst_mac 02:8b:ac:74:47:c5 vlan_id 1737 vlan_ethtype 0x0800 src_ip 105.254.126.204 dst_ip 36.242.235.249 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11147 flower src_mac 02:b9:e6:96:1f:1e dst_mac 02:d8:80:e1:51:d5 vlan_id 3516 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11148 flower src_mac 02:67:29:25:fd:f4 dst_mac 02:34:de:88:77:14 vlan_id 3273 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11149 flower src_mac 02:6b:3d:d3:ba:ac dst_mac 02:fd:2e:28:5c:14 vlan_id 2744 vlan_ethtype 0x0800 src_ip 21.114.173.174 dst_ip 101.220.171.88 ip_proto tcp src_port 27714 dst_port 16607 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11150 flower src_mac 02:79:7c:2a:43:68 dst_mac 02:47:cd:b9:27:36 vlan_id 617 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11151 flower src_mac 02:01:9e:24:7b:ac dst_mac 02:61:e1:c5:8e:54 src_ip 11.86.115.147 dst_ip 72.180.10.188 ip_proto tcp src_port 4309 dst_port 39834 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11152 flower src_mac 02:44:1b:1b:21:02 dst_mac 02:2b:ce:6a:2a:61 vlan_id 2115 vlan_ethtype 0x0800 src_ip 115.136.85.42 dst_ip 119.126.249.8 action pass && tc filter add dev swp1 ingress protocol ip pref 11153 flower src_mac 02:36:d6:09:68:c3 dst_mac 02:3f:df:ec:23:b3 src_ip 92.178.14.7 dst_ip 123.172.83.62 ip_proto icmp code 95 type 5 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11154 flower src_mac 02:13:63:96:e0:65 dst_mac 02:08:eb:ae:77:e4 vlan_id 3051 vlan_ethtype ip src_ip 76.128.216.205 dst_ip 86.226.98.172 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11155 flower src_mac 02:f8:a7:cf:96:1c dst_mac 02:ae:64:e2:11:23 vlan_id 876 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11156 flower src_mac 02:7d:6a:1d:31:bc dst_mac 02:36:f8:e6:bf:6b vlan_id 2696 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11157 flower src_mac 02:1d:5b:70:55:d4 dst_mac 02:c5:ff:ed:fc:99 vlan_id 3075 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11158 flower src_mac 02:fe:8e:9c:11:38 dst_mac 02:3e:45:61:0a:62 src_ip 97.14.138.15 dst_ip 25.180.234.195 ip_proto udp src_port 16956 dst_port 39167 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11159 flower src_mac 02:a9:ff:d0:ed:98 dst_mac 02:fb:b1:a5:c7:96 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11160 flower src_mac 02:1b:47:61:a8:31 dst_mac 02:9e:2a:ca:5c:85 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:db:4c:cb:7a:ac dst_mac 02:1a:02:4f:1c:61 vlan_id 3018 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11162 flower src_mac 02:7b:d8:37:aa:1e dst_mac 02:e5:70:a0:aa:df vlan_id 3757 vlan_ethtype ipv4 src_ip 96.183.127.58 dst_ip 51.27.131.79 action drop && tc filter add dev swp1 ingress protocol ip pref 11163 flower src_mac 02:14:45:07:f9:9f dst_mac 02:2d:d0:a4:d7:c0 src_ip 115.181.159.171 dst_ip 40.91.116.87 ip_proto udp src_port 38979 dst_port 27328 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11164 flower src_mac 02:04:8d:0b:48:2a dst_mac 02:a2:fb:42:41:15 vlan_id 43 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11165 flower src_mac 02:e5:eb:24:4c:71 dst_mac 02:51:27:7d:62:50 vlan_id 2733 vlan_ethtype ip src_ip 53.239.19.99 dst_ip 76.178.216.145 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11166 flower src_mac 02:2a:7d:cc:c1:a4 dst_mac 02:f3:25:3a:d5:13 vlan_id 2166 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11167 flower src_mac 02:f8:ce:45:fa:93 dst_mac 02:cf:c4:a1:5f:3a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11168 flower src_mac 02:72:99:89:19:ef dst_mac 02:11:4c:7d:0b:e6 vlan_id 1190 vlan_ethtype 0x0800 src_ip 79.67.72.16 dst_ip 86.247.158.169 ip_proto udp src_port 59894 dst_port 41286 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11169 flower src_mac 02:e5:a2:8b:e9:e6 dst_mac 02:51:3f:df:43:09 src_ip 101.72.71.156 dst_ip 74.98.137.143 ip_proto tcp src_port 25355 dst_port 8459 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11170 flower src_mac 02:f5:40:fc:ad:21 dst_mac 02:4b:86:cc:59:46 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11171 flower src_mac 02:d7:a8:ac:14:07 dst_mac 02:0e:26:64:b9:ff vlan_id 1266 vlan_ethtype ipv4 src_ip 117.175.54.130 dst_ip 115.131.243.16 action drop && tc filter add dev swp1 ingress protocol ip pref 11172 flower src_mac 02:f6:6a:03:81:83 dst_mac 02:40:bc:20:6a:d1 src_ip 35.118.97.222 dst_ip 80.76.41.226 ip_proto tcp src_port 47898 dst_port 47863 action trap && tc filter add dev swp1 ingress protocol ip pref 11173 flower src_mac 02:25:4b:34:c3:26 dst_mac 02:aa:03:95:42:89 src_ip 77.209.237.190 dst_ip 80.142.227.53 ip_proto icmp code 105 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11174 flower src_mac 02:82:39:e5:d0:84 dst_mac 02:a5:32:3d:54:6a vlan_id 3123 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11175 flower src_mac 02:7a:0b:19:49:97 dst_mac 02:f1:3f:a5:b1:85 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11176 flower src_mac 02:8e:a3:5d:67:1f dst_mac 02:cf:55:66:0d:48 src_ip 51.123.216.178 dst_ip 104.130.204.42 ip_proto udp src_port 56740 dst_port 50368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11177 flower src_mac 02:c2:dd:3e:29:31 dst_mac 02:4e:53:71:49:74 vlan_id 3804 vlan_ethtype 0x0800 src_ip 21.89.59.60 dst_ip 27.210.120.236 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11178 flower src_mac 02:16:5e:df:24:99 dst_mac 02:46:9f:46:95:01 action pass && tc filter add dev swp1 ingress protocol ip pref 11179 flower src_mac 02:3a:60:29:cf:c8 dst_mac 02:d6:f4:f2:47:e8 src_ip 77.32.231.74 dst_ip 39.83.171.101 ip_proto tcp src_port 10028 dst_port 39865 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11180 flower src_mac 02:9a:30:29:fa:f0 dst_mac 02:09:0c:88:17:3a vlan_id 2679 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11181 flower src_mac 02:03:46:34:e7:1f dst_mac 02:54:67:66:42:e9 src_ip 74.248.220.151 dst_ip 29.216.14.76 ip_proto icmp code 41 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11182 flower src_mac 02:ca:29:98:42:66 dst_mac 02:08:bf:bf:9b:e9 vlan_id 1357 vlan_ethtype ip src_ip 73.227.144.54 dst_ip 25.8.6.67 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11183 flower src_mac 02:13:99:5f:2a:6b dst_mac 02:df:c1:f2:91:7b action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11184 flower src_mac 02:dc:9f:d1:06:90 dst_mac 02:2d:1b:9b:3e:84 src_ip 101.220.31.89 dst_ip 114.143.206.193 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11185 flower src_mac 02:49:71:e6:2a:34 dst_mac 02:37:2a:e0:50:31 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11186 flower src_mac 02:45:ac:43:71:f5 dst_mac 02:02:a6:19:89:e4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11187 flower src_mac 02:ef:ac:5b:e0:1b dst_mac 02:73:55:9a:0f:99 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11188 flower src_mac 02:4f:c8:b7:7b:a3 dst_mac 02:6b:9f:ce:be:38 src_ip 76.193.244.54 dst_ip 36.228.93.26 ip_proto udp src_port 18864 dst_port 53591 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11189 flower src_mac 02:d7:3d:be:43:2b dst_mac 02:5a:7d:fc:a0:55 src_ip 66.78.179.163 dst_ip 36.28.112.181 ip_proto udp src_port 12937 dst_port 63135 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11190 flower src_mac 02:11:99:eb:ae:b9 dst_mac 02:f7:23:c6:f6:7c vlan_id 1096 vlan_ethtype 0x0800 src_ip 43.107.87.187 dst_ip 41.145.217.209 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11191 flower src_mac 02:2a:1f:ec:02:18 dst_mac 02:1a:9a:c1:c7:bb action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11192 flower src_mac 02:80:b2:82:5f:29 dst_mac 02:5e:9e:34:76:47 vlan_id 1438 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11193 flower src_mac 02:30:ac:64:87:c1 dst_mac 02:d2:6f:dd:ac:d8 vlan_id 1071 vlan_ethtype ip src_ip 13.167.206.73 dst_ip 77.38.182.5 ip_proto tcp src_port 35611 dst_port 38342 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11194 flower src_mac 02:2c:7d:81:ab:74 dst_mac 02:d2:ef:58:de:54 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11195 flower src_mac 02:40:e2:66:74:46 dst_mac 02:c7:c4:37:c7:6a src_ip 54.220.202.44 dst_ip 115.225.148.108 ip_proto udp src_port 373 dst_port 32123 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11196 flower src_mac 02:d6:6a:5f:ab:62 dst_mac 02:cd:f1:33:c8:2c vlan_id 3705 vlan_ethtype ipv4 src_ip 93.10.51.109 dst_ip 107.68.235.89 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11197 flower src_mac 02:af:5b:97:5e:a3 dst_mac 02:58:37:df:1c:e4 vlan_id 3039 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11198 flower src_mac 02:3e:f0:a4:ca:90 dst_mac 02:70:82:c7:fc:ca vlan_id 2430 vlan_ethtype 0x0800 src_ip 28.31.116.207 dst_ip 84.147.206.200 ip_proto udp src_port 34065 dst_port 53261 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11199 flower src_mac 02:a0:e2:47:4f:db dst_mac 02:0e:63:26:35:81 src_ip 107.0.88.208 dst_ip 107.70.117.175 ip_proto udp src_port 34285 dst_port 26094 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 11200 flower src_mac 02:d8:c9:b4:f6:84 dst_mac 02:75:7e:45:26:64 vlan_id 4062 vlan_ethtype ip src_ip 120.175.251.218 dst_ip 95.84.79.216 ip_proto udp src_port 30445 dst_port 50617 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:bc:7c:c2:5e:d9 dst_mac 02:8b:0d:73:36:cc vlan_id 4035 vlan_ethtype ipv4 src_ip 93.108.14.133 dst_ip 77.105.237.27 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11202 flower src_mac 02:54:2e:99:e5:38 dst_mac 02:4e:07:db:ae:a0 src_ip 44.177.178.179 dst_ip 46.181.192.167 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11203 flower src_mac 02:1f:bf:d3:46:1e dst_mac 02:85:67:09:e0:03 vlan_id 807 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11204 flower src_mac 02:7c:83:4f:17:aa dst_mac 02:5e:c8:f2:a9:cb vlan_id 3280 vlan_ethtype ipv4 src_ip 56.96.253.87 dst_ip 90.19.112.57 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11205 flower src_mac 02:e8:30:21:0d:2b dst_mac 02:d3:72:49:a9:5a action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11206 flower src_mac 02:e3:0c:4d:e3:60 dst_mac 02:ce:59:6b:9f:6c src_ip 83.82.148.143 dst_ip 60.174.123.23 ip_proto udp src_port 23349 dst_port 19224 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11207 flower src_mac 02:57:1a:2f:e4:64 dst_mac 02:e7:6a:33:df:49 src_ip 71.231.208.81 dst_ip 69.31.12.122 ip_proto tcp src_port 58744 dst_port 39521 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11208 flower src_mac 02:d3:2d:31:6b:34 dst_mac 02:75:16:74:26:c2 vlan_id 1094 vlan_ethtype ipv4 src_ip 115.224.96.208 dst_ip 97.172.202.215 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11209 flower src_mac 02:b5:1b:dd:b6:6d dst_mac 02:e0:b3:69:78:a3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11210 flower src_mac 02:aa:cf:b1:16:d2 dst_mac 02:84:f3:39:f0:13 vlan_id 714 vlan_ethtype ip src_ip 45.82.101.39 dst_ip 98.194.244.26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11211 flower src_mac 02:de:3f:9e:d7:19 dst_mac 02:47:28:d0:8c:5c vlan_id 177 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11212 flower src_mac 02:45:21:6a:ff:c6 dst_mac 02:26:bd:76:a6:ff action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11213 flower src_mac 02:65:c1:e5:99:da dst_mac 02:1d:7e:80:c5:dd action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11214 flower src_mac 02:47:0b:ee:c2:53 dst_mac 02:4b:3e:99:ff:7b src_ip 92.86.214.76 dst_ip 53.92.175.248 ip_proto icmp code 58 type 16 action drop && tc filter add dev swp1 ingress protocol ip pref 11215 flower src_mac 02:bb:ca:4f:42:86 dst_mac 02:43:e0:c7:ac:1a src_ip 38.32.184.67 dst_ip 103.58.168.48 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11216 flower src_mac 02:04:c9:c6:a7:ea dst_mac 02:99:fe:81:85:33 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11217 flower src_mac 02:3d:d0:db:7f:4f dst_mac 02:c9:3b:3a:4d:c9 vlan_id 592 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11218 flower src_mac 02:39:10:94:33:f4 dst_mac 02:34:c9:7b:09:14 src_ip 18.73.0.197 dst_ip 43.159.4.239 ip_proto udp src_port 27524 dst_port 39503 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11219 flower src_mac 02:7c:ff:e8:c6:6f dst_mac 02:0a:78:11:cd:4c src_ip 92.236.211.26 dst_ip 65.119.67.172 ip_proto icmp code 129 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11220 flower src_mac 02:a5:20:26:c5:f2 dst_mac 02:26:f4:bf:3a:d0 vlan_id 552 vlan_ethtype ipv4 src_ip 99.223.70.122 dst_ip 118.240.200.25 ip_proto udp src_port 38592 dst_port 38671 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11221 flower src_mac 02:da:59:47:ec:83 dst_mac 02:f0:0e:0d:e1:d0 vlan_id 468 vlan_ethtype ip src_ip 16.155.28.139 dst_ip 114.214.167.152 ip_proto udp src_port 55488 dst_port 34731 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11222 flower src_mac 02:79:5e:ed:78:20 dst_mac 02:9b:13:c1:e8:22 vlan_id 3792 vlan_ethtype 0x0800 src_ip 56.89.250.217 dst_ip 36.172.106.47 ip_proto tcp src_port 39507 dst_port 56024 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11223 flower src_mac 02:3d:7d:fa:14:01 dst_mac 02:65:90:de:9d:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11224 flower src_mac 02:82:f8:8b:42:ff dst_mac 02:36:af:8f:15:74 vlan_id 1149 vlan_ethtype ipv4 src_ip 126.10.182.149 dst_ip 17.164.203.51 action trap && tc filter add dev swp1 ingress protocol ip pref 11225 flower src_mac 02:aa:ce:56:5c:e6 dst_mac 02:99:7a:ef:da:a4 src_ip 72.176.64.193 dst_ip 84.13.60.132 action trap && tc filter add dev swp1 ingress protocol ip pref 11226 flower src_mac 02:4b:92:78:44:af dst_mac 02:d4:9f:d4:54:c5 src_ip 17.252.181.65 dst_ip 117.103.67.138 ip_proto icmp code 142 type 14 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11227 flower src_mac 02:42:50:56:83:44 dst_mac 02:16:6d:03:9f:ec vlan_id 2190 vlan_ethtype 0x0800 src_ip 96.209.136.14 dst_ip 120.137.127.96 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:b0:09:e9:52:c6 dst_mac 02:b1:5c:97:a2:cc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11229 flower src_mac 02:fd:9f:2f:45:b2 dst_mac 02:e2:c9:33:90:b0 vlan_id 4049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11230 flower src_mac 02:51:dc:b7:f6:95 dst_mac 02:ec:43:d1:c6:f4 src_ip 110.90.68.84 dst_ip 58.133.210.56 ip_proto icmp code 222 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11231 flower src_mac 02:49:50:01:9e:80 dst_mac 02:7f:2b:46:e4:c6 vlan_id 3646 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11232 flower src_mac 02:45:b9:62:e0:7e dst_mac 02:9d:38:65:96:27 vlan_id 4057 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11233 flower src_mac 02:07:53:8c:e2:d8 dst_mac 02:b7:9c:2c:42:31 vlan_id 2860 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11234 flower src_mac 02:52:d9:16:9f:94 dst_mac 02:31:18:73:6f:5e vlan_id 2994 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11235 flower src_mac 02:f7:7c:76:f1:ed dst_mac 02:89:22:84:d8:cb vlan_id 18 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11236 flower src_mac 02:9f:a9:78:bf:20 dst_mac 02:6d:fd:9c:4b:03 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11237 flower src_mac 02:b7:1e:43:1e:39 dst_mac 02:c2:ad:ad:38:7a vlan_id 711 vlan_ethtype ip src_ip 75.193.247.199 dst_ip 81.27.237.157 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11238 flower src_mac 02:56:c8:2d:04:41 dst_mac 02:bf:7e:ad:4c:5a src_ip 100.222.97.48 dst_ip 67.26.131.196 ip_proto udp src_port 15044 dst_port 58491 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11239 flower src_mac 02:98:6c:1e:ec:46 dst_mac 02:14:40:8d:a7:ab src_ip 61.197.116.143 dst_ip 75.123.118.219 ip_proto tcp src_port 25211 dst_port 54221 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11240 flower src_mac 02:8e:de:e9:d0:81 dst_mac 02:d8:a6:34:f1:13 vlan_id 1813 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11241 flower src_mac 02:5f:e5:0e:ad:52 dst_mac 02:20:db:77:4d:37 src_ip 41.219.72.193 dst_ip 100.165.184.155 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11242 flower src_mac 02:44:83:96:2a:1e dst_mac 02:f8:1a:50:6f:93 vlan_id 1230 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11243 flower src_mac 02:fc:1a:19:85:51 dst_mac 02:86:cc:f4:91:71 vlan_id 1499 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11244 flower src_mac 02:f0:9d:71:94:0e dst_mac 02:ff:fc:bf:1a:9d action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11245 flower src_mac 02:06:c1:8f:72:6e dst_mac 02:79:a0:c3:8f:85 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11246 flower src_mac 02:49:e7:c3:1b:82 dst_mac 02:55:03:6b:63:8a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11247 flower src_mac 02:67:12:9a:91:5f dst_mac 02:42:60:1d:c3:ec src_ip 110.209.188.143 dst_ip 59.68.135.123 ip_proto tcp src_port 45750 dst_port 4004 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11248 flower src_mac 02:e0:3f:b1:50:9d dst_mac 02:bd:bc:49:99:29 src_ip 34.68.40.58 dst_ip 66.25.86.223 ip_proto tcp src_port 25075 dst_port 5771 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:ee:22:00:14:83 dst_mac 02:c1:b0:0e:8b:5a vlan_id 2283 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11250 flower src_mac 02:7d:4a:38:01:04 dst_mac 02:e1:f8:c8:64:2b vlan_id 2145 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11251 flower src_mac 02:18:f4:4d:73:ad dst_mac 02:fc:90:e6:d8:9c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11252 flower src_mac 02:a0:5c:79:0d:14 dst_mac 02:48:39:10:2d:94 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:81:3a:40:ff:e3 dst_mac 02:93:38:e2:0f:57 vlan_id 2298 vlan_ethtype ip src_ip 42.251.81.100 dst_ip 52.26.173.20 ip_proto udp src_port 28375 dst_port 2253 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11254 flower src_mac 02:08:5a:e2:45:1b dst_mac 02:24:fc:ec:0c:f9 vlan_id 979 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11255 flower src_mac 02:93:e2:bd:6f:1b dst_mac 02:78:2b:60:21:9c action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11256 flower src_mac 02:20:d0:9b:b1:13 dst_mac 02:77:31:d5:d6:3b vlan_id 4028 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11257 flower src_mac 02:5b:68:0b:fa:1e dst_mac 02:87:fe:1e:e9:fc src_ip 83.40.83.16 dst_ip 66.143.223.104 ip_proto udp src_port 11310 dst_port 29994 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11258 flower src_mac 02:13:36:1d:18:bf dst_mac 02:4d:55:84:15:7d vlan_id 301 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11259 flower src_mac 02:84:7f:84:a1:18 dst_mac 02:5b:99:ba:bc:50 vlan_id 2669 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11260 flower src_mac 02:2f:56:60:a6:b7 dst_mac 02:c6:f1:1e:41:e1 vlan_id 3666 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11261 flower src_mac 02:1e:93:28:82:b8 dst_mac 02:4b:df:88:e9:ca src_ip 89.159.200.213 dst_ip 30.131.209.163 ip_proto udp src_port 25611 dst_port 29350 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11262 flower src_mac 02:24:7a:57:51:90 dst_mac 02:d0:d0:9d:b8:a9 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11263 flower src_mac 02:c6:7f:66:e2:6c dst_mac 02:67:19:1f:44:c7 src_ip 39.211.233.29 dst_ip 46.125.220.20 ip_proto udp src_port 46538 dst_port 6257 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11264 flower src_mac 02:e0:d0:a9:7b:74 dst_mac 02:62:17:2a:f8:3d vlan_id 527 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11265 flower src_mac 02:2f:a0:ff:13:c4 dst_mac 02:6b:3f:10:72:92 vlan_id 1439 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11266 flower src_mac 02:00:c7:bc:5b:ca dst_mac 02:b1:4d:76:cc:72 vlan_id 1364 vlan_ethtype 0x0800 src_ip 11.133.230.21 dst_ip 115.48.72.118 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11267 flower src_mac 02:e2:7b:c7:35:de dst_mac 02:2c:eb:37:95:b0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11268 flower src_mac 02:f8:06:45:77:68 dst_mac 02:17:ab:f4:78:56 vlan_id 1820 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11269 flower src_mac 02:5e:ea:c0:e1:9d dst_mac 02:d6:df:7f:d7:77 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11270 flower src_mac 02:05:18:22:45:03 dst_mac 02:5b:ab:48:c0:a7 vlan_id 3781 vlan_ethtype ipv4 src_ip 85.225.112.17 dst_ip 20.226.78.191 ip_proto tcp src_port 2115 dst_port 56235 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11271 flower src_mac 02:95:fa:06:eb:4f dst_mac 02:e3:69:bd:11:80 vlan_id 1038 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11272 flower src_mac 02:5f:46:79:e1:18 dst_mac 02:bc:8c:0f:7f:0b vlan_id 305 vlan_ethtype ip src_ip 25.70.73.51 dst_ip 61.248.11.13 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11273 flower src_mac 02:6e:82:e6:be:e1 dst_mac 02:4b:f3:6a:1d:62 src_ip 66.60.160.62 dst_ip 46.42.41.161 ip_proto udp src_port 34085 dst_port 28584 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11274 flower src_mac 02:db:d0:f8:aa:b1 dst_mac 02:db:8d:3a:cd:03 vlan_id 1922 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11275 flower src_mac 02:99:1c:87:f7:11 dst_mac 02:26:d7:7b:b7:7d vlan_id 3884 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11276 flower src_mac 02:e2:c9:f8:0c:f8 dst_mac 02:26:af:77:25:8b action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11277 flower src_mac 02:57:c2:57:14:02 dst_mac 02:ab:15:b3:d4:0b src_ip 112.6.129.36 dst_ip 19.201.161.24 ip_proto tcp src_port 15952 dst_port 19648 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11278 flower src_mac 02:2b:01:68:1f:fb dst_mac 02:cb:9c:ce:94:0f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11279 flower src_mac 02:81:bf:4b:5c:53 dst_mac 02:54:32:ba:04:25 vlan_id 2504 vlan_ethtype 0x0800 src_ip 72.72.204.129 dst_ip 15.235.165.66 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11280 flower src_mac 02:a3:23:37:5f:97 dst_mac 02:1d:90:90:b8:40 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11281 flower src_mac 02:b7:46:bd:78:75 dst_mac 02:2b:94:46:1f:4e src_ip 39.147.49.180 dst_ip 80.190.87.47 ip_proto tcp src_port 44294 dst_port 55685 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11282 flower src_mac 02:e6:89:07:9a:4e dst_mac 02:e2:34:a6:d4:86 vlan_id 2737 vlan_ethtype 0x0800 src_ip 102.220.71.162 dst_ip 119.119.95.39 ip_proto udp src_port 61918 dst_port 7375 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11283 flower src_mac 02:f4:99:5d:85:a2 dst_mac 02:ae:e6:59:85:30 vlan_id 1347 vlan_ethtype ipv4 src_ip 106.65.82.1 dst_ip 81.245.109.64 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11284 flower src_mac 02:47:4f:69:a7:b4 dst_mac 02:6b:fa:10:4d:4a src_ip 61.95.34.245 dst_ip 46.9.119.102 ip_proto icmp code 90 type 11 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11285 flower src_mac 02:f5:37:44:84:22 dst_mac 02:cc:e1:c5:d1:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:d4:6f:75:2d:28 dst_mac 02:b9:31:dd:98:0d vlan_id 197 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11287 flower src_mac 02:fb:ac:13:c9:0e dst_mac 02:ef:fb:bc:be:ce vlan_id 1799 vlan_ethtype ip src_ip 70.18.165.223 dst_ip 28.48.56.116 ip_proto udp src_port 62189 dst_port 2256 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11288 flower src_mac 02:05:dd:f1:15:f9 dst_mac 02:15:ec:42:99:ba vlan_id 211 vlan_ethtype ip src_ip 48.5.76.173 dst_ip 25.194.188.242 ip_proto udp src_port 39523 dst_port 39294 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11289 flower src_mac 02:cd:8e:52:f0:0b dst_mac 02:67:5a:79:33:3f vlan_id 3797 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11290 flower src_mac 02:8c:20:cf:f2:cc dst_mac 02:72:d0:dd:dc:a8 vlan_id 3117 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11291 flower src_mac 02:b1:f7:4e:d0:8e dst_mac 02:ac:5b:0d:36:ff vlan_id 1074 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11292 flower src_mac 02:27:5c:a0:22:76 dst_mac 02:90:d6:28:a1:1d vlan_id 569 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11293 flower src_mac 02:f9:d1:00:0c:1d dst_mac 02:bd:fd:cf:57:a6 src_ip 32.162.83.153 dst_ip 71.146.101.8 ip_proto tcp src_port 23261 dst_port 5116 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11294 flower src_mac 02:2a:8d:af:80:ba dst_mac 02:b5:ae:59:c7:0a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:f5:2e:5e:8f:e0 dst_mac 02:eb:eb:c0:f5:4a vlan_id 621 vlan_ethtype 0x0800 src_ip 64.62.220.87 dst_ip 65.55.229.27 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:58:49:0b:82:f2 dst_mac 02:95:76:0d:18:4b vlan_id 3517 vlan_ethtype ip src_ip 81.124.204.155 dst_ip 34.134.132.12 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11297 flower src_mac 02:14:b5:d2:10:7c dst_mac 02:d2:79:bf:96:8a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11298 flower src_mac 02:32:70:0d:1e:b8 dst_mac 02:40:ac:6d:15:3d vlan_id 915 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11299 flower src_mac 02:53:80:8f:35:9d dst_mac 02:cc:b4:df:f3:78 vlan_id 473 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11300 flower src_mac 02:ee:4f:58:ba:cd dst_mac 02:a5:1f:00:aa:d2 action drop && tc filter add dev swp1 ingress protocol ip pref 11301 flower src_mac 02:1a:59:fe:d7:3d dst_mac 02:7c:9e:01:7c:67 src_ip 38.122.48.94 dst_ip 17.249.14.81 ip_proto icmp code 43 type 8 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11302 flower src_mac 02:37:b3:f0:fa:de dst_mac 02:21:2d:d8:ec:a1 src_ip 62.19.190.67 dst_ip 53.67.197.13 ip_proto udp src_port 56259 dst_port 28350 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11303 flower src_mac 02:fb:99:59:71:0d dst_mac 02:75:3b:a2:33:65 vlan_id 2521 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11304 flower src_mac 02:75:42:21:88:82 dst_mac 02:9a:0f:76:95:61 vlan_id 8 vlan_ethtype ipv4 src_ip 13.102.216.60 dst_ip 33.158.60.143 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11305 flower src_mac 02:5c:06:f0:81:a6 dst_mac 02:41:d0:33:b9:80 vlan_id 1768 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11306 flower src_mac 02:e5:13:5e:09:e5 dst_mac 02:61:f5:67:aa:40 vlan_id 2952 vlan_ethtype ip src_ip 95.22.89.182 dst_ip 75.39.97.135 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11307 flower src_mac 02:fb:39:64:46:74 dst_mac 02:f2:1d:9e:28:29 src_ip 15.104.216.137 dst_ip 93.226.251.121 ip_proto tcp src_port 33477 dst_port 31599 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11308 flower src_mac 02:cb:17:f6:85:48 dst_mac 02:d4:4f:59:fb:03 action trap && tc filter add dev swp1 ingress protocol ip pref 11309 flower src_mac 02:76:d7:7b:8b:7c dst_mac 02:0f:09:2e:21:e5 src_ip 87.236.165.114 dst_ip 17.56.241.137 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11310 flower src_mac 02:ea:be:49:14:cf dst_mac 02:0f:5e:2f:4a:34 vlan_id 2225 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11311 flower src_mac 02:4f:c8:d2:7a:9e dst_mac 02:d0:56:b9:85:c6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11312 flower src_mac 02:6d:de:d2:90:90 dst_mac 02:4b:c2:78:2b:d0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11313 flower src_mac 02:37:69:41:59:b6 dst_mac 02:b3:5a:83:6e:a7 vlan_id 1485 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11314 flower src_mac 02:74:3a:02:ed:07 dst_mac 02:e2:31:f3:4e:bc vlan_id 626 vlan_ethtype ipv4 src_ip 100.94.100.55 dst_ip 95.171.163.113 ip_proto tcp src_port 62110 dst_port 42317 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11315 flower src_mac 02:24:a2:e2:d1:45 dst_mac 02:6a:19:71:4c:26 vlan_id 673 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11316 flower src_mac 02:50:c1:2a:3b:0e dst_mac 02:02:f7:f5:c6:88 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11317 flower src_mac 02:c8:bd:27:cd:90 dst_mac 02:71:8a:85:0e:53 src_ip 105.252.142.48 dst_ip 23.9.210.24 ip_proto icmp code 180 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11318 flower src_mac 02:03:05:36:b0:de dst_mac 02:1b:77:29:a1:2f vlan_id 3996 vlan_ethtype ip src_ip 64.226.135.153 dst_ip 105.200.199.124 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11319 flower src_mac 02:e2:29:31:28:8b dst_mac 02:03:e0:47:96:92 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11320 flower src_mac 02:3f:71:5b:81:a6 dst_mac 02:d9:0f:9b:4a:d9 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11321 flower src_mac 02:f7:db:f6:aa:77 dst_mac 02:83:05:70:c5:8d action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11322 flower src_mac 02:c2:0c:50:21:43 dst_mac 02:53:5b:03:eb:16 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11323 flower src_mac 02:f7:01:32:34:00 dst_mac 02:67:c4:4a:32:4c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11324 flower src_mac 02:82:a0:d0:3a:04 dst_mac 02:c2:f4:e8:0f:36 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11325 flower src_mac 02:2a:5d:b0:61:85 dst_mac 02:2b:17:91:c3:0c vlan_id 3030 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11326 flower src_mac 02:5b:dc:3b:44:76 dst_mac 02:bb:8b:79:64:3f src_ip 34.63.129.142 dst_ip 114.93.97.24 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11327 flower src_mac 02:20:10:42:94:27 dst_mac 02:fa:c3:54:6a:b1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11328 flower src_mac 02:d6:a7:5a:3d:4a dst_mac 02:79:f5:c4:58:33 vlan_id 2638 vlan_ethtype ip src_ip 65.184.100.165 dst_ip 31.209.151.161 ip_proto udp src_port 36062 dst_port 17425 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11329 flower src_mac 02:69:1b:07:57:77 dst_mac 02:7a:4c:81:76:28 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:87:72:22:5a:7a dst_mac 02:90:12:f5:63:d1 vlan_id 3438 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11331 flower src_mac 02:4c:4c:5c:64:29 dst_mac 02:59:4b:67:67:be vlan_id 3624 vlan_ethtype ipv4 src_ip 106.29.73.128 dst_ip 50.14.103.21 ip_proto udp src_port 55920 dst_port 38419 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11332 flower src_mac 02:98:93:8e:ca:db dst_mac 02:6a:b7:ca:43:68 vlan_id 3886 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11333 flower src_mac 02:91:cb:6e:d6:6c dst_mac 02:4c:65:df:4f:80 vlan_id 1223 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:5d:8c:f0:86:c9 dst_mac 02:42:f5:2f:c8:2c vlan_id 2384 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11335 flower src_mac 02:98:92:d3:4a:50 dst_mac 02:fc:bd:02:1a:af src_ip 122.196.212.242 dst_ip 85.73.92.239 ip_proto icmp code 254 type 12 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11336 flower src_mac 02:49:d1:53:dd:72 dst_mac 02:a7:aa:f5:36:93 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11337 flower src_mac 02:b7:d2:11:24:04 dst_mac 02:e1:d4:14:a8:12 vlan_id 3745 vlan_ethtype ipv4 src_ip 97.135.111.162 dst_ip 43.150.167.81 ip_proto udp src_port 47599 dst_port 46695 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11338 flower src_mac 02:16:30:c8:e9:22 dst_mac 02:2a:ad:2e:45:5f src_ip 97.230.61.180 dst_ip 70.134.29.203 ip_proto tcp src_port 29384 dst_port 6388 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11339 flower src_mac 02:ba:21:73:a3:e4 dst_mac 02:b9:de:84:07:c9 vlan_id 1447 vlan_ethtype ip src_ip 38.189.198.124 dst_ip 110.232.158.209 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11340 flower src_mac 02:34:eb:2a:fb:ee dst_mac 02:8b:eb:c4:df:81 vlan_id 295 vlan_ethtype ipv4 src_ip 84.35.51.238 dst_ip 80.255.33.29 ip_proto tcp src_port 21794 dst_port 11398 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11341 flower src_mac 02:96:1b:9c:bd:b1 dst_mac 02:bf:b8:00:b8:66 vlan_id 1252 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11342 flower src_mac 02:cf:ee:b8:8b:81 dst_mac 02:5e:f9:cc:49:b0 vlan_id 2712 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11343 flower src_mac 02:66:f8:41:6d:1b dst_mac 02:fe:ec:b0:a3:37 src_ip 110.174.70.69 dst_ip 73.118.54.181 ip_proto udp src_port 2071 dst_port 35827 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11344 flower src_mac 02:7c:f8:15:44:e2 dst_mac 02:24:0a:72:6a:f3 src_ip 92.209.216.18 dst_ip 20.36.82.47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11345 flower src_mac 02:89:8a:d1:c1:6a dst_mac 02:8d:96:6e:f5:69 vlan_id 748 vlan_ethtype ipv4 src_ip 91.230.252.190 dst_ip 58.123.57.156 ip_proto tcp src_port 38 dst_port 30676 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11346 flower src_mac 02:5d:b9:9c:59:d0 dst_mac 02:1a:5b:bc:a1:f5 src_ip 54.86.30.140 dst_ip 100.225.180.33 ip_proto icmp code 64 type 5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11347 flower src_mac 02:6f:e7:0c:9c:17 dst_mac 02:70:a9:63:80:b5 vlan_id 2627 vlan_ethtype ip src_ip 104.71.173.247 dst_ip 111.19.200.30 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11348 flower src_mac 02:7c:4a:46:fb:26 dst_mac 02:cc:c9:c2:75:e0 vlan_id 1364 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11349 flower src_mac 02:a0:34:5f:2c:a8 dst_mac 02:f7:de:78:64:ca src_ip 26.46.221.201 dst_ip 36.159.151.166 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11350 flower src_mac 02:78:bc:0a:c2:00 dst_mac 02:cf:95:60:37:6d vlan_id 1791 vlan_ethtype ipv4 src_ip 104.238.166.198 dst_ip 83.13.215.189 ip_proto tcp src_port 46844 dst_port 26290 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11351 flower src_mac 02:6e:a6:51:a6:fd dst_mac 02:01:04:af:96:4b src_ip 31.118.241.10 dst_ip 103.109.144.132 ip_proto udp src_port 42003 dst_port 16091 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11352 flower src_mac 02:3c:99:24:ec:12 dst_mac 02:fd:65:b7:63:f9 src_ip 90.5.202.45 dst_ip 107.7.88.139 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11353 flower src_mac 02:14:31:2b:97:c9 dst_mac 02:42:01:bd:df:eb vlan_id 2307 vlan_ethtype ip src_ip 46.243.245.166 dst_ip 101.36.133.95 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11354 flower src_mac 02:58:1f:51:d7:1b dst_mac 02:fa:73:d2:ba:30 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11355 flower src_mac 02:72:3d:f9:77:76 dst_mac 02:9d:f3:5b:bf:95 src_ip 114.77.30.162 dst_ip 28.167.178.205 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11356 flower src_mac 02:b1:9a:9f:e5:51 dst_mac 02:9f:10:32:73:ec action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11357 flower src_mac 02:d1:30:df:9f:aa dst_mac 02:32:1d:df:54:07 vlan_id 3110 vlan_ethtype ipv4 src_ip 69.29.217.16 dst_ip 49.120.60.2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11358 flower src_mac 02:09:66:2c:71:32 dst_mac 02:e4:5e:bf:bd:07 vlan_id 3565 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11359 flower src_mac 02:d2:56:f4:b1:22 dst_mac 02:2a:04:33:69:53 vlan_id 59 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11360 flower src_mac 02:a7:6d:5c:49:29 dst_mac 02:d8:fc:73:1f:ec src_ip 115.193.82.101 dst_ip 69.250.46.4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11361 flower src_mac 02:6e:74:c4:b1:20 dst_mac 02:7c:ed:77:6c:07 vlan_id 945 vlan_ethtype ipv4 src_ip 50.251.2.106 dst_ip 17.196.83.81 ip_proto udp src_port 30260 dst_port 28202 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11362 flower src_mac 02:73:53:65:95:fa dst_mac 02:69:51:45:28:9b vlan_id 2093 vlan_ethtype 0x0800 src_ip 43.252.229.120 dst_ip 61.208.121.66 action pass && tc filter add dev swp1 ingress protocol ip pref 11363 flower src_mac 02:f4:78:5f:6d:a8 dst_mac 02:ba:e3:43:eb:34 src_ip 74.123.179.151 dst_ip 22.15.97.26 ip_proto tcp src_port 42428 dst_port 6283 action drop && tc filter add dev swp1 ingress protocol ip pref 11364 flower src_mac 02:54:6b:c9:38:08 dst_mac 02:1a:5d:29:ff:de src_ip 45.104.200.65 dst_ip 50.140.53.140 ip_proto icmp code 17 type 4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11365 flower src_mac 02:6d:9e:5d:5b:61 dst_mac 02:74:b2:3a:48:f1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11366 flower src_mac 02:35:12:ae:27:e6 dst_mac 02:fe:e9:02:19:9d vlan_id 40 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11367 flower src_mac 02:76:44:95:1e:cf dst_mac 02:6c:0b:4e:84:57 vlan_id 1162 vlan_ethtype ip src_ip 74.56.213.102 dst_ip 88.153.205.13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11368 flower src_mac 02:22:71:21:ff:60 dst_mac 02:1a:e9:e8:3e:85 vlan_id 3381 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11369 flower src_mac 02:0f:d3:70:f0:bd dst_mac 02:71:86:b9:93:15 src_ip 11.4.249.242 dst_ip 77.6.39.218 ip_proto icmp code 236 type 0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11370 flower src_mac 02:0a:a1:c3:40:92 dst_mac 02:ad:12:e3:b7:69 vlan_id 1713 vlan_ethtype 0x0800 src_ip 44.126.27.112 dst_ip 121.119.241.157 ip_proto udp src_port 5434 dst_port 38095 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11371 flower src_mac 02:7d:82:d8:be:88 dst_mac 02:f0:66:53:e8:b1 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11372 flower src_mac 02:f9:62:db:0b:58 dst_mac 02:32:45:57:70:97 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11373 flower src_mac 02:c0:6b:5e:3f:1b dst_mac 02:28:37:3c:1f:67 vlan_id 509 vlan_ethtype ipv4 src_ip 26.92.18.104 dst_ip 65.120.110.63 ip_proto tcp src_port 38040 dst_port 54157 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11374 flower src_mac 02:9b:ac:ef:f5:ae dst_mac 02:a6:80:6e:06:57 vlan_id 1321 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11375 flower src_mac 02:6a:d5:a5:35:22 dst_mac 02:89:36:47:c2:19 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11376 flower src_mac 02:29:39:cb:09:5a dst_mac 02:b0:d8:ea:91:73 vlan_id 2296 vlan_ethtype ipv4 src_ip 94.81.248.103 dst_ip 110.195.217.184 ip_proto tcp src_port 57442 dst_port 11843 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11377 flower src_mac 02:1a:8c:0f:96:16 dst_mac 02:f2:03:aa:12:70 src_ip 53.177.131.186 dst_ip 118.92.167.233 ip_proto icmp code 13 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11378 flower src_mac 02:05:3a:c5:3e:a0 dst_mac 02:5f:75:8d:d6:85 vlan_id 1569 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11379 flower src_mac 02:39:25:2a:72:04 dst_mac 02:26:d5:7f:88:90 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11380 flower src_mac 02:38:df:63:34:7c dst_mac 02:47:ae:ce:70:cc src_ip 90.94.152.130 dst_ip 113.20.30.68 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11381 flower src_mac 02:3d:1d:91:6c:c1 dst_mac 02:50:b2:6d:80:0d action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11382 flower src_mac 02:54:0e:19:bb:30 dst_mac 02:b4:9b:30:64:db action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11383 flower src_mac 02:63:e0:a4:df:af dst_mac 02:99:4c:cb:5a:99 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11384 flower src_mac 02:b8:3d:90:e1:5b dst_mac 02:6e:50:9f:4d:10 action trap && tc filter add dev swp1 ingress protocol ip pref 11385 flower src_mac 02:c9:8e:05:1c:11 dst_mac 02:19:ac:38:d0:e1 src_ip 101.15.76.122 dst_ip 27.96.195.60 ip_proto tcp src_port 37163 dst_port 57400 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11386 flower src_mac 02:f2:ec:7e:3b:c5 dst_mac 02:60:56:95:5c:53 vlan_id 863 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11387 flower src_mac 02:d4:e0:57:8f:d6 dst_mac 02:ed:8f:b2:c5:2f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11388 flower src_mac 02:0d:6e:4c:00:d3 dst_mac 02:b2:89:ce:2d:dd src_ip 98.85.149.161 dst_ip 14.255.40.145 ip_proto tcp src_port 30501 dst_port 27353 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11389 flower src_mac 02:cf:b9:52:b9:f3 dst_mac 02:c0:68:72:2b:9f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11390 flower src_mac 02:41:e9:a4:60:80 dst_mac 02:36:31:c6:7b:0d vlan_id 2988 vlan_ethtype ipv4 src_ip 98.92.221.144 dst_ip 20.226.31.239 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11391 flower src_mac 02:fd:41:cd:3f:f5 dst_mac 02:f4:58:09:18:17 vlan_id 4092 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11392 flower src_mac 02:33:8c:bf:d6:d8 dst_mac 02:a7:30:83:52:39 vlan_id 1980 vlan_ethtype 0x0800 src_ip 63.125.196.19 dst_ip 85.135.41.151 ip_proto tcp src_port 35065 dst_port 39387 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11393 flower src_mac 02:f3:30:7c:7d:dd dst_mac 02:c4:43:a8:dd:39 vlan_id 3582 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11394 flower src_mac 02:fe:d0:09:4d:3f dst_mac 02:e7:eb:0c:b3:3c vlan_id 3967 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11395 flower src_mac 02:8c:5d:cb:06:cf dst_mac 02:66:9c:97:3d:32 src_ip 30.15.39.250 dst_ip 83.179.252.198 ip_proto udp src_port 17247 dst_port 38066 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11396 flower src_mac 02:76:3a:ca:37:b3 dst_mac 02:64:a1:df:d2:54 vlan_id 1485 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11397 flower src_mac 02:ad:ae:2d:84:40 dst_mac 02:30:e4:ae:e2:79 vlan_id 2002 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11398 flower src_mac 02:d7:be:ec:fc:80 dst_mac 02:09:cb:66:d0:ba vlan_id 2207 vlan_ethtype 0x0800 src_ip 54.88.139.162 dst_ip 52.34.21.220 ip_proto udp src_port 39996 dst_port 18235 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11399 flower src_mac 02:64:b3:35:70:16 dst_mac 02:9c:df:31:d9:dd vlan_id 202 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11400 flower src_mac 02:52:fa:f5:92:89 dst_mac 02:f7:81:10:1c:89 vlan_id 1999 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11401 flower src_mac 02:3b:17:b4:0b:c7 dst_mac 02:21:03:7d:0e:79 vlan_id 4017 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11402 flower src_mac 02:2a:b2:42:4e:bf dst_mac 02:5f:e3:39:a6:a8 vlan_id 2794 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11403 flower src_mac 02:32:84:77:c4:ef dst_mac 02:1b:3a:62:c7:b8 vlan_id 1023 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11404 flower src_mac 02:23:db:83:80:b2 dst_mac 02:e9:88:85:d0:7b vlan_id 2052 vlan_ethtype ip src_ip 76.17.28.166 dst_ip 17.234.157.123 ip_proto udp src_port 29647 dst_port 7306 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11405 flower src_mac 02:d0:ca:6c:af:7e dst_mac 02:cc:0c:04:f6:f1 vlan_id 3658 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11406 flower src_mac 02:47:c5:b4:fd:ba dst_mac 02:e5:e6:3b:fb:ee vlan_id 1210 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11407 flower src_mac 02:1a:72:af:3b:75 dst_mac 02:22:58:47:63:4b vlan_id 3815 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11408 flower src_mac 02:44:61:b6:14:b0 dst_mac 02:03:12:fb:2f:21 vlan_id 1553 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11409 flower src_mac 02:45:e8:39:b7:57 dst_mac 02:55:5a:04:47:34 vlan_id 1950 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11410 flower src_mac 02:c7:b2:0d:40:2a dst_mac 02:7e:88:bb:87:dd vlan_id 262 vlan_ethtype 0x0800 src_ip 105.189.76.229 dst_ip 44.170.42.12 ip_proto udp src_port 53595 dst_port 26519 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11411 flower src_mac 02:ae:46:73:5f:ed dst_mac 02:ef:6c:5d:c7:5d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11412 flower src_mac 02:6a:b3:c1:98:16 dst_mac 02:e1:7f:52:3f:b5 src_ip 123.134.27.236 dst_ip 23.198.87.93 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11413 flower src_mac 02:9e:58:10:95:2d dst_mac 02:23:61:68:59:99 vlan_id 3587 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11414 flower src_mac 02:a0:ba:3e:e3:34 dst_mac 02:64:4d:c5:f5:a3 vlan_id 3727 vlan_ethtype 0x0800 src_ip 51.169.154.202 dst_ip 35.118.46.85 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11415 flower src_mac 02:9b:f9:7c:ca:01 dst_mac 02:4e:43:08:ee:34 vlan_id 3187 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11416 flower src_mac 02:12:7a:75:b6:b6 dst_mac 02:b7:d1:2d:3b:1a vlan_id 125 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11417 flower src_mac 02:24:97:91:3f:d8 dst_mac 02:b4:a6:dd:91:15 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11418 flower src_mac 02:72:87:ec:eb:d8 dst_mac 02:a4:b9:a9:88:9e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11419 flower src_mac 02:87:65:45:41:7e dst_mac 02:26:9e:43:d4:ef vlan_id 219 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11420 flower src_mac 02:9f:19:09:3d:26 dst_mac 02:23:36:1b:dd:3d action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11421 flower src_mac 02:15:da:98:8c:eb dst_mac 02:fb:9c:f9:10:fd action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11422 flower src_mac 02:c2:01:40:c5:65 dst_mac 02:79:83:2f:82:6a action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11423 flower src_mac 02:86:55:4f:d9:6f dst_mac 02:ad:e3:45:32:98 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11424 flower src_mac 02:94:a2:9c:00:85 dst_mac 02:0d:ea:21:36:0f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11425 flower src_mac 02:47:b6:ac:39:e5 dst_mac 02:c9:c3:39:37:c4 src_ip 54.204.173.250 dst_ip 100.134.53.91 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11426 flower src_mac 02:98:9f:8b:fd:2e dst_mac 02:22:2f:e9:ab:89 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11427 flower src_mac 02:28:40:f8:cf:c7 dst_mac 02:67:88:30:bc:31 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11428 flower src_mac 02:30:0e:d7:d5:56 dst_mac 02:9a:42:7d:f3:e9 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11429 flower src_mac 02:0b:33:bc:76:eb dst_mac 02:a2:f6:6c:cd:ce action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11430 flower src_mac 02:a2:a9:e4:6a:44 dst_mac 02:8b:ae:bb:6d:4a vlan_id 414 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11431 flower src_mac 02:bf:f1:de:66:58 dst_mac 02:9e:52:b7:a1:68 src_ip 101.72.83.29 dst_ip 76.240.172.115 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11432 flower src_mac 02:53:f8:30:40:a1 dst_mac 02:f4:35:88:1a:59 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11433 flower src_mac 02:9d:8d:77:be:a9 dst_mac 02:4b:4f:0f:35:06 src_ip 110.49.0.14 dst_ip 103.100.83.114 ip_proto icmp code 15 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11434 flower src_mac 02:5f:15:e1:d0:60 dst_mac 02:cc:48:70:6c:8b vlan_id 3575 vlan_ethtype ip src_ip 99.36.147.193 dst_ip 51.1.79.241 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11435 flower src_mac 02:92:fe:99:ee:04 dst_mac 02:68:0f:2b:02:64 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11436 flower src_mac 02:99:d4:0d:64:c7 dst_mac 02:d6:19:44:a8:e3 src_ip 81.50.249.223 dst_ip 11.64.161.56 ip_proto udp src_port 2964 dst_port 21401 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11437 flower src_mac 02:e3:4d:60:3e:01 dst_mac 02:87:ff:59:e7:c3 vlan_id 1200 vlan_ethtype ip src_ip 106.7.203.178 dst_ip 73.85.74.60 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11438 flower src_mac 02:3f:ef:91:4e:ef dst_mac 02:97:d6:86:c4:26 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11439 flower src_mac 02:e0:22:75:7c:de dst_mac 02:24:42:7d:be:6c src_ip 62.135.241.120 dst_ip 35.14.141.25 action trap && tc filter add dev swp1 ingress protocol ip pref 11440 flower src_mac 02:73:5d:0e:47:3b dst_mac 02:fe:bd:34:74:dd src_ip 59.132.183.149 dst_ip 123.93.184.42 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11441 flower src_mac 02:39:cc:ee:d1:11 dst_mac 02:be:c1:5c:1a:93 vlan_id 1271 vlan_ethtype 0x0800 src_ip 69.93.96.128 dst_ip 92.160.181.165 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11442 flower src_mac 02:e3:2c:0c:b0:ab dst_mac 02:ec:a5:5e:aa:13 src_ip 79.85.234.116 dst_ip 56.12.111.40 ip_proto icmp code 172 type 17 action drop && tc filter add dev swp1 ingress protocol ip pref 11443 flower src_mac 02:43:18:31:4b:f3 dst_mac 02:ae:38:96:e5:e0 src_ip 26.192.123.51 dst_ip 67.142.61.111 ip_proto tcp src_port 59025 dst_port 23535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11444 flower src_mac 02:f0:af:ed:5b:74 dst_mac 02:b3:4c:62:e0:f5 vlan_id 4059 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11445 flower src_mac 02:f8:22:57:65:60 dst_mac 02:90:52:fa:45:98 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11446 flower src_mac 02:93:9d:6e:dc:24 dst_mac 02:86:87:00:5f:6d vlan_id 2541 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:6a:27:23:17:bc dst_mac 02:1d:4a:7c:3f:d1 vlan_id 2260 vlan_ethtype ip src_ip 22.61.223.165 dst_ip 30.106.227.110 ip_proto udp src_port 47414 dst_port 45298 action drop && tc filter add dev swp1 ingress protocol ip pref 11448 flower src_mac 02:9f:46:4d:63:a3 dst_mac 02:e2:ab:c1:f2:0b src_ip 82.240.195.64 dst_ip 72.100.4.221 ip_proto udp src_port 60630 dst_port 11798 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11449 flower src_mac 02:48:5d:2b:98:c8 dst_mac 02:78:97:fb:8b:cf vlan_id 1922 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11450 flower src_mac 02:b8:25:92:fe:5e dst_mac 02:4c:1a:cc:77:a6 vlan_id 2032 vlan_ethtype ipv4 src_ip 30.96.179.159 dst_ip 31.250.159.183 ip_proto tcp src_port 22800 dst_port 23502 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11451 flower src_mac 02:22:da:a9:37:e1 dst_mac 02:08:cc:4b:8e:f6 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11452 flower src_mac 02:ab:5e:a2:bc:38 dst_mac 02:0c:fd:76:8d:36 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11453 flower src_mac 02:46:22:94:49:a6 dst_mac 02:1d:86:a3:01:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11454 flower src_mac 02:04:75:80:3a:fc dst_mac 02:9d:0c:31:eb:7e vlan_id 3719 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11455 flower src_mac 02:fe:50:46:64:1a dst_mac 02:19:bb:82:da:9c src_ip 51.158.224.66 dst_ip 68.138.13.246 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11456 flower src_mac 02:c1:ac:fe:a0:73 dst_mac 02:6a:c8:06:c3:71 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11457 flower src_mac 02:fd:b8:f6:6d:1a dst_mac 02:2a:a7:f0:be:89 vlan_id 763 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11458 flower src_mac 02:3f:9f:4d:82:5d dst_mac 02:d5:34:c2:f9:f7 src_ip 113.27.53.144 dst_ip 74.20.77.75 ip_proto tcp src_port 34190 dst_port 58996 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11459 flower src_mac 02:24:7d:3f:24:e0 dst_mac 02:c8:be:3f:a0:a3 src_ip 83.169.246.249 dst_ip 114.27.216.148 ip_proto icmp code 147 type 12 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11460 flower src_mac 02:f0:74:5c:ee:f4 dst_mac 02:ff:79:b1:eb:15 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11461 flower src_mac 02:39:db:33:c1:50 dst_mac 02:19:bf:8b:41:1e src_ip 109.148.37.168 dst_ip 95.226.233.235 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11462 flower src_mac 02:5f:28:9a:40:eb dst_mac 02:2b:1d:69:13:e9 vlan_id 3508 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11463 flower src_mac 02:83:02:11:df:84 dst_mac 02:76:94:33:53:f6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11464 flower src_mac 02:cd:c1:50:ff:01 dst_mac 02:30:b9:ed:be:95 vlan_id 110 vlan_ethtype ip src_ip 107.246.61.107 dst_ip 122.77.147.3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11465 flower src_mac 02:62:12:69:67:18 dst_mac 02:c0:b8:e5:9c:5e vlan_id 154 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11466 flower src_mac 02:e9:5b:da:2c:fb dst_mac 02:6a:a0:3e:48:30 vlan_id 3273 vlan_ethtype ipv4 src_ip 102.142.90.146 dst_ip 91.186.48.82 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11467 flower src_mac 02:2b:fc:aa:ef:54 dst_mac 02:f2:ab:15:f4:76 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11468 flower src_mac 02:70:b4:02:a5:04 dst_mac 02:04:32:99:76:49 vlan_id 1069 vlan_ethtype ipv4 src_ip 95.25.53.45 dst_ip 31.211.215.183 ip_proto udp src_port 34558 dst_port 13726 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11469 flower src_mac 02:3f:e7:31:2d:8c dst_mac 02:a1:10:cc:e6:f2 vlan_id 1428 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11470 flower src_mac 02:bb:70:a1:a9:a0 dst_mac 02:ec:55:03:03:cc action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11471 flower src_mac 02:5a:a6:4c:e2:48 dst_mac 02:84:97:79:a6:05 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11472 flower src_mac 02:cc:a9:ee:2f:c6 dst_mac 02:d9:15:3e:5c:6c vlan_id 3841 vlan_ethtype ip src_ip 29.255.199.128 dst_ip 98.86.11.178 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11473 flower src_mac 02:b1:3b:6a:9c:c6 dst_mac 02:d7:f3:24:39:a2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11474 flower src_mac 02:df:a1:b5:37:f4 dst_mac 02:ba:14:b9:d7:1f vlan_id 1232 vlan_ethtype 0x0800 src_ip 45.26.15.184 dst_ip 65.90.45.152 ip_proto udp src_port 33171 dst_port 16204 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11475 flower src_mac 02:3d:b8:c5:4d:75 dst_mac 02:8a:58:9b:2e:7b vlan_id 2855 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11476 flower src_mac 02:9f:8b:6f:0c:ed dst_mac 02:c9:7f:f0:7f:91 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11477 flower src_mac 02:48:2e:5c:c2:e1 dst_mac 02:07:e2:29:d4:33 vlan_id 1203 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11478 flower src_mac 02:cf:dc:6e:ae:df dst_mac 02:e4:cf:3b:7e:f4 vlan_id 4063 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11479 flower src_mac 02:a5:c6:9a:5b:f6 dst_mac 02:b0:c4:6b:f7:ec vlan_id 2270 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11480 flower src_mac 02:56:ae:84:0c:3b dst_mac 02:c3:d5:8e:11:5c action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11481 flower src_mac 02:46:4f:22:d5:0b dst_mac 02:0c:6b:55:6c:2d src_ip 56.56.18.233 dst_ip 60.12.239.172 ip_proto icmp code 135 type 8 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11482 flower src_mac 02:1f:65:97:26:86 dst_mac 02:70:0a:84:ad:c5 src_ip 40.248.58.54 dst_ip 13.189.138.110 ip_proto udp src_port 46735 dst_port 18209 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11483 flower src_mac 02:f3:40:64:21:5e dst_mac 02:7c:dd:70:80:3c action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11484 flower src_mac 02:e8:bc:d2:9c:ee dst_mac 02:7a:bd:d8:ce:82 src_ip 104.222.31.116 dst_ip 78.86.200.50 ip_proto udp src_port 52251 dst_port 34993 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11485 flower src_mac 02:e3:c0:47:fd:7c dst_mac 02:f1:5e:be:d2:e2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11486 flower src_mac 02:37:22:5e:36:db dst_mac 02:b5:74:1b:19:9d vlan_id 3032 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11487 flower src_mac 02:42:70:6f:2c:75 dst_mac 02:60:ab:24:e9:0b vlan_id 78 vlan_ethtype 0x0800 src_ip 97.10.2.250 dst_ip 104.208.39.136 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11488 flower src_mac 02:9d:7f:f4:3a:09 dst_mac 02:e4:24:56:ee:53 vlan_id 3601 vlan_ethtype ipv4 src_ip 65.122.148.247 dst_ip 110.162.96.6 ip_proto udp src_port 44889 dst_port 56802 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11489 flower src_mac 02:f8:32:04:45:1e dst_mac 02:5b:83:5e:ad:c9 vlan_id 3797 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11490 flower src_mac 02:b6:af:26:c9:2e dst_mac 02:03:d8:ec:23:86 vlan_id 995 vlan_ethtype 0x0800 src_ip 21.22.93.175 dst_ip 117.124.190.238 ip_proto udp src_port 51634 dst_port 17184 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11491 flower src_mac 02:ca:79:3e:be:2c dst_mac 02:45:99:a9:4f:98 vlan_id 3967 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11492 flower src_mac 02:15:2c:1c:99:c8 dst_mac 02:c6:cf:16:fd:95 src_ip 13.134.200.167 dst_ip 40.107.58.73 ip_proto udp src_port 58799 dst_port 7585 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11493 flower src_mac 02:cd:72:c0:c9:43 dst_mac 02:e5:07:02:b7:a1 vlan_id 3880 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11494 flower src_mac 02:27:d6:bd:91:c5 dst_mac 02:f2:23:d5:cb:54 action drop && tc filter add dev swp1 ingress protocol ip pref 11495 flower src_mac 02:27:8a:4c:9e:54 dst_mac 02:b1:56:80:7c:cf src_ip 36.92.171.165 dst_ip 87.99.214.45 ip_proto tcp src_port 61252 dst_port 34156 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11496 flower src_mac 02:13:24:71:0b:7b dst_mac 02:c9:a4:8f:d1:62 src_ip 33.53.0.206 dst_ip 102.106.146.190 ip_proto icmp code 154 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11497 flower src_mac 02:23:dc:33:f7:f8 dst_mac 02:ea:0f:64:dc:8a vlan_id 745 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11498 flower src_mac 02:f2:64:10:15:9a dst_mac 02:48:af:c5:5e:af action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11499 flower src_mac 02:fc:9b:c3:e7:eb dst_mac 02:ea:91:f2:71:d1 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11500 flower src_mac 02:fe:7f:20:40:fb dst_mac 02:b1:7a:98:1d:b4 src_ip 52.164.96.165 dst_ip 112.3.10.150 ip_proto tcp src_port 3007 dst_port 37733 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11501 flower src_mac 02:22:a8:b8:7c:a8 dst_mac 02:be:d5:fc:1b:eb src_ip 77.180.32.129 dst_ip 84.115.116.156 ip_proto icmp code 250 type 0 action pass && tc filter add dev swp1 ingress protocol ip pref 11502 flower src_mac 02:15:0e:24:55:35 dst_mac 02:1c:8d:8c:a0:ee src_ip 124.242.94.179 dst_ip 112.41.129.19 ip_proto udp src_port 60710 dst_port 16979 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11503 flower src_mac 02:d6:fa:a7:6c:d3 dst_mac 02:d5:01:65:f2:cb src_ip 33.206.224.1 dst_ip 83.113.189.95 ip_proto tcp src_port 19530 dst_port 18385 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11504 flower src_mac 02:ae:c2:1a:e8:e0 dst_mac 02:c6:0b:63:16:35 vlan_id 2850 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11505 flower src_mac 02:0d:dc:b3:67:dd dst_mac 02:6d:81:5a:8d:f8 src_ip 28.136.139.70 dst_ip 70.62.112.23 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11506 flower src_mac 02:d9:80:cc:fa:5e dst_mac 02:0c:5f:0e:3c:7e action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11507 flower src_mac 02:05:82:05:75:c9 dst_mac 02:8e:e3:2a:6e:7a vlan_id 2059 vlan_ethtype 0x0800 src_ip 15.172.0.44 dst_ip 126.164.241.8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11508 flower src_mac 02:35:4e:75:47:3a dst_mac 02:bf:83:85:52:ce vlan_id 2129 vlan_ethtype ip src_ip 117.99.19.241 dst_ip 122.165.26.8 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11509 flower src_mac 02:8c:82:d7:7a:27 dst_mac 02:90:52:a7:84:7d action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11510 flower src_mac 02:f7:21:b8:53:4b dst_mac 02:02:b2:ae:9d:75 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11511 flower src_mac 02:da:06:d7:77:72 dst_mac 02:65:e5:d3:73:5b src_ip 57.167.247.54 dst_ip 21.39.27.178 ip_proto icmp code 80 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11512 flower src_mac 02:6c:08:7e:4b:49 dst_mac 02:1c:de:3c:54:31 vlan_id 2334 vlan_ethtype ipv4 src_ip 63.253.130.101 dst_ip 36.165.93.55 ip_proto udp src_port 55890 dst_port 25546 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11513 flower src_mac 02:6f:af:26:4e:c9 dst_mac 02:99:04:ad:f2:89 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11514 flower src_mac 02:3d:a1:3a:66:fd dst_mac 02:2f:46:83:79:b7 src_ip 96.218.117.65 dst_ip 26.115.80.148 ip_proto icmp code 221 type 14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11515 flower src_mac 02:da:06:e5:1e:2e dst_mac 02:a8:c2:ea:7a:b3 vlan_id 2024 vlan_ethtype ip src_ip 17.226.134.47 dst_ip 104.126.74.222 ip_proto udp src_port 55959 dst_port 16365 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11516 flower src_mac 02:cb:6d:4d:0f:f9 dst_mac 02:c8:71:37:90:59 vlan_id 3272 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11517 flower src_mac 02:84:13:78:29:5b dst_mac 02:70:27:a2:54:dd action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11518 flower src_mac 02:64:f4:40:36:24 dst_mac 02:a9:84:b3:79:98 vlan_id 113 vlan_ethtype ip src_ip 16.126.222.57 dst_ip 39.101.50.246 ip_proto udp src_port 29128 dst_port 33970 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11519 flower src_mac 02:fd:53:ab:e8:51 dst_mac 02:d2:bc:9f:19:48 vlan_id 2785 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11520 flower src_mac 02:0a:35:a7:9d:0f dst_mac 02:84:26:0b:c7:e5 src_ip 25.91.221.204 dst_ip 54.194.38.173 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11521 flower src_mac 02:ac:e7:82:ab:5e dst_mac 02:4f:dd:c7:84:f1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11522 flower src_mac 02:b5:35:6d:65:43 dst_mac 02:3b:5b:bb:6a:71 vlan_id 3447 vlan_ethtype ipv4 src_ip 24.105.124.221 dst_ip 61.33.126.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11523 flower src_mac 02:f4:66:6a:7d:58 dst_mac 02:ed:ee:93:6c:cd vlan_id 2826 vlan_ethtype 0x0800 src_ip 63.130.137.46 dst_ip 117.77.38.16 ip_proto tcp src_port 47641 dst_port 50261 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11524 flower src_mac 02:06:52:e9:b2:9b dst_mac 02:b6:86:25:7e:02 src_ip 42.112.225.8 dst_ip 57.101.89.89 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11525 flower src_mac 02:b6:de:65:e0:4b dst_mac 02:7b:fb:5d:25:8c src_ip 90.237.190.114 dst_ip 68.213.202.151 ip_proto tcp src_port 37053 dst_port 17423 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11526 flower src_mac 02:54:d2:c5:ff:a2 dst_mac 02:31:09:0e:fd:9d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11527 flower src_mac 02:89:1d:fa:56:ff dst_mac 02:b3:5a:e5:d3:70 vlan_id 3058 vlan_ethtype ipv4 src_ip 116.90.134.45 dst_ip 104.131.61.100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11528 flower src_mac 02:b5:9f:4c:f1:c3 dst_mac 02:ff:49:8c:ca:0b vlan_id 1911 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11529 flower src_mac 02:a8:17:b6:92:29 dst_mac 02:30:b4:8b:16:15 vlan_id 1372 vlan_ethtype ip src_ip 37.112.155.165 dst_ip 51.75.43.226 ip_proto udp src_port 17946 dst_port 33144 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11530 flower src_mac 02:5b:2e:b7:a5:d0 dst_mac 02:c5:75:ea:7f:7c action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11531 flower src_mac 02:27:f9:20:52:86 dst_mac 02:09:f9:e6:73:92 src_ip 30.237.145.109 dst_ip 93.24.220.180 ip_proto icmp code 246 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11532 flower src_mac 02:03:fd:b5:2d:84 dst_mac 02:b0:f2:2f:f0:24 vlan_id 533 vlan_ethtype ip src_ip 19.78.148.210 dst_ip 81.143.103.185 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11533 flower src_mac 02:9e:62:05:85:da dst_mac 02:c4:f4:1b:ad:24 src_ip 88.37.107.100 dst_ip 49.184.250.130 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11534 flower src_mac 02:35:48:c8:d8:3d dst_mac 02:4b:a3:51:72:f8 vlan_id 2431 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11535 flower src_mac 02:1b:26:d2:09:e5 dst_mac 02:a5:22:75:0c:ad action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 11200 flower src_mac 02:d8:c9:b4:f6:84 dst_mac 02:75:7e:45:26:64 vlan_id 4062 vlan_ethtype ip src_ip 120.175.251.218 dst_ip 95.84.79.216 ip_proto udp src_port 30445 dst_port 50617 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:bc:7c:c2:5e:d9 dst_mac 02:8b:0d:73:36:cc vlan_id 4035 vlan_ethtype ipv4 src_ip 93.108.14.133 dst_ip 77.105.237.27 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11202 flower src_mac 02:54:2e:99:e5:38 dst_mac 02:4e:07:db:ae:a0 src_ip 44.177.178.179 dst_ip 46.181.192.167 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11203 flower src_mac 02:1f:bf:d3:46:1e dst_mac 02:85:67:09:e0:03 vlan_id 807 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11204 flower src_mac 02:7c:83:4f:17:aa dst_mac 02:5e:c8:f2:a9:cb vlan_id 3280 vlan_ethtype ipv4 src_ip 56.96.253.87 dst_ip 90.19.112.57 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11205 flower src_mac 02:e8:30:21:0d:2b dst_mac 02:d3:72:49:a9:5a action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11206 flower src_mac 02:e3:0c:4d:e3:60 dst_mac 02:ce:59:6b:9f:6c src_ip 83.82.148.143 dst_ip 60.174.123.23 ip_proto udp src_port 23349 dst_port 19224 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11207 flower src_mac 02:57:1a:2f:e4:64 dst_mac 02:e7:6a:33:df:49 src_ip 71.231.208.81 dst_ip 69.31.12.122 ip_proto tcp src_port 58744 dst_port 39521 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11208 flower src_mac 02:d3:2d:31:6b:34 dst_mac 02:75:16:74:26:c2 vlan_id 1094 vlan_ethtype ipv4 src_ip 115.224.96.208 dst_ip 97.172.202.215 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11209 flower src_mac 02:b5:1b:dd:b6:6d dst_mac 02:e0:b3:69:78:a3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11210 flower src_mac 02:aa:cf:b1:16:d2 dst_mac 02:84:f3:39:f0:13 vlan_id 714 vlan_ethtype ip src_ip 45.82.101.39 dst_ip 98.194.244.26 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11211 flower src_mac 02:de:3f:9e:d7:19 dst_mac 02:47:28:d0:8c:5c vlan_id 177 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11212 flower src_mac 02:45:21:6a:ff:c6 dst_mac 02:26:bd:76:a6:ff action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11213 flower src_mac 02:65:c1:e5:99:da dst_mac 02:1d:7e:80:c5:dd action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11214 flower src_mac 02:47:0b:ee:c2:53 dst_mac 02:4b:3e:99:ff:7b src_ip 92.86.214.76 dst_ip 53.92.175.248 ip_proto icmp code 58 type 16 action drop && tc filter add dev swp1 ingress protocol ip pref 11215 flower src_mac 02:bb:ca:4f:42:86 dst_mac 02:43:e0:c7:ac:1a src_ip 38.32.184.67 dst_ip 103.58.168.48 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11216 flower src_mac 02:04:c9:c6:a7:ea dst_mac 02:99:fe:81:85:33 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11217 flower src_mac 02:3d:d0:db:7f:4f dst_mac 02:c9:3b:3a:4d:c9 vlan_id 592 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11218 flower src_mac 02:39:10:94:33:f4 dst_mac 02:34:c9:7b:09:14 src_ip 18.73.0.197 dst_ip 43.159.4.239 ip_proto udp src_port 27524 dst_port 39503 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11219 flower src_mac 02:7c:ff:e8:c6:6f dst_mac 02:0a:78:11:cd:4c src_ip 92.236.211.26 dst_ip 65.119.67.172 ip_proto icmp code 129 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11220 flower src_mac 02:a5:20:26:c5:f2 dst_mac 02:26:f4:bf:3a:d0 vlan_id 552 vlan_ethtype ipv4 src_ip 99.223.70.122 dst_ip 118.240.200.25 ip_proto udp src_port 38592 dst_port 38671 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11221 flower src_mac 02:da:59:47:ec:83 dst_mac 02:f0:0e:0d:e1:d0 vlan_id 468 vlan_ethtype ip src_ip 16.155.28.139 dst_ip 114.214.167.152 ip_proto udp src_port 55488 dst_port 34731 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11222 flower src_mac 02:79:5e:ed:78:20 dst_mac 02:9b:13:c1:e8:22 vlan_id 3792 vlan_ethtype 0x0800 src_ip 56.89.250.217 dst_ip 36.172.106.47 ip_proto tcp src_port 39507 dst_port 56024 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11223 flower src_mac 02:3d:7d:fa:14:01 dst_mac 02:65:90:de:9d:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11224 flower src_mac 02:82:f8:8b:42:ff dst_mac 02:36:af:8f:15:74 vlan_id 1149 vlan_ethtype ipv4 src_ip 126.10.182.149 dst_ip 17.164.203.51 action trap && tc filter add dev swp1 ingress protocol ip pref 11225 flower src_mac 02:aa:ce:56:5c:e6 dst_mac 02:99:7a:ef:da:a4 src_ip 72.176.64.193 dst_ip 84.13.60.132 action trap && tc filter add dev swp1 ingress protocol ip pref 11226 flower src_mac 02:4b:92:78:44:af dst_mac 02:d4:9f:d4:54:c5 src_ip 17.252.181.65 dst_ip 117.103.67.138 ip_proto icmp code 142 type 14 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11227 flower src_mac 02:42:50:56:83:44 dst_mac 02:16:6d:03:9f:ec vlan_id 2190 vlan_ethtype 0x0800 src_ip 96.209.136.14 dst_ip 120.137.127.96 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:b0:09:e9:52:c6 dst_mac 02:b1:5c:97:a2:cc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11229 flower src_mac 02:fd:9f:2f:45:b2 dst_mac 02:e2:c9:33:90:b0 vlan_id 4049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11230 flower src_mac 02:51:dc:b7:f6:95 dst_mac 02:ec:43:d1:c6:f4 src_ip 110.90.68.84 dst_ip 58.133.210.56 ip_proto icmp code 222 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11231 flower src_mac 02:49:50:01:9e:80 dst_mac 02:7f:2b:46:e4:c6 vlan_id 3646 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11232 flower src_mac 02:45:b9:62:e0:7e dst_mac 02:9d:38:65:96:27 vlan_id 4057 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11233 flower src_mac 02:07:53:8c:e2:d8 dst_mac 02:b7:9c:2c:42:31 vlan_id 2860 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11234 flower src_mac 02:52:d9:16:9f:94 dst_mac 02:31:18:73:6f:5e vlan_id 2994 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11235 flower src_mac 02:f7:7c:76:f1:ed dst_mac 02:89:22:84:d8:cb vlan_id 18 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11236 flower src_mac 02:9f:a9:78:bf:20 dst_mac 02:6d:fd:9c:4b:03 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11237 flower src_mac 02:b7:1e:43:1e:39 dst_mac 02:c2:ad:ad:38:7a vlan_id 711 vlan_ethtype ip src_ip 75.193.247.199 dst_ip 81.27.237.157 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11238 flower src_mac 02:56:c8:2d:04:41 dst_mac 02:bf:7e:ad:4c:5a src_ip 100.222.97.48 dst_ip 67.26.131.196 ip_proto udp src_port 15044 dst_port 58491 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11239 flower src_mac 02:98:6c:1e:ec:46 dst_mac 02:14:40:8d:a7:ab src_ip 61.197.116.143 dst_ip 75.123.118.219 ip_proto tcp src_port 25211 dst_port 54221 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11240 flower src_mac 02:8e:de:e9:d0:81 dst_mac 02:d8:a6:34:f1:13 vlan_id 1813 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11241 flower src_mac 02:5f:e5:0e:ad:52 dst_mac 02:20:db:77:4d:37 src_ip 41.219.72.193 dst_ip 100.165.184.155 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11242 flower src_mac 02:44:83:96:2a:1e dst_mac 02:f8:1a:50:6f:93 vlan_id 1230 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11243 flower src_mac 02:fc:1a:19:85:51 dst_mac 02:86:cc:f4:91:71 vlan_id 1499 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11244 flower src_mac 02:f0:9d:71:94:0e dst_mac 02:ff:fc:bf:1a:9d action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11245 flower src_mac 02:06:c1:8f:72:6e dst_mac 02:79:a0:c3:8f:85 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11246 flower src_mac 02:49:e7:c3:1b:82 dst_mac 02:55:03:6b:63:8a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11247 flower src_mac 02:67:12:9a:91:5f dst_mac 02:42:60:1d:c3:ec src_ip 110.209.188.143 dst_ip 59.68.135.123 ip_proto tcp src_port 45750 dst_port 4004 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11248 flower src_mac 02:e0:3f:b1:50:9d dst_mac 02:bd:bc:49:99:29 src_ip 34.68.40.58 dst_ip 66.25.86.223 ip_proto tcp src_port 25075 dst_port 5771 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:ee:22:00:14:83 dst_mac 02:c1:b0:0e:8b:5a vlan_id 2283 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11250 flower src_mac 02:7d:4a:38:01:04 dst_mac 02:e1:f8:c8:64:2b vlan_id 2145 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11251 flower src_mac 02:18:f4:4d:73:ad dst_mac 02:fc:90:e6:d8:9c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11252 flower src_mac 02:a0:5c:79:0d:14 dst_mac 02:48:39:10:2d:94 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:81:3a:40:ff:e3 dst_mac 02:93:38:e2:0f:57 vlan_id 2298 vlan_ethtype ip src_ip 42.251.81.100 dst_ip 52.26.173.20 ip_proto udp src_port 28375 dst_port 2253 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11254 flower src_mac 02:08:5a:e2:45:1b dst_mac 02:24:fc:ec:0c:f9 vlan_id 979 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11255 flower src_mac 02:93:e2:bd:6f:1b dst_mac 02:78:2b:60:21:9c action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11256 flower src_mac 02:20:d0:9b:b1:13 dst_mac 02:77:31:d5:d6:3b vlan_id 4028 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11257 flower src_mac 02:5b:68:0b:fa:1e dst_mac 02:87:fe:1e:e9:fc src_ip 83.40.83.16 dst_ip 66.143.223.104 ip_proto udp src_port 11310 dst_port 29994 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11258 flower src_mac 02:13:36:1d:18:bf dst_mac 02:4d:55:84:15:7d vlan_id 301 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11259 flower src_mac 02:84:7f:84:a1:18 dst_mac 02:5b:99:ba:bc:50 vlan_id 2669 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11260 flower src_mac 02:2f:56:60:a6:b7 dst_mac 02:c6:f1:1e:41:e1 vlan_id 3666 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11261 flower src_mac 02:1e:93:28:82:b8 dst_mac 02:4b:df:88:e9:ca src_ip 89.159.200.213 dst_ip 30.131.209.163 ip_proto udp src_port 25611 dst_port 29350 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11262 flower src_mac 02:24:7a:57:51:90 dst_mac 02:d0:d0:9d:b8:a9 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11263 flower src_mac 02:c6:7f:66:e2:6c dst_mac 02:67:19:1f:44:c7 src_ip 39.211.233.29 dst_ip 46.125.220.20 ip_proto udp src_port 46538 dst_port 6257 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11264 flower src_mac 02:e0:d0:a9:7b:74 dst_mac 02:62:17:2a:f8:3d vlan_id 527 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11265 flower src_mac 02:2f:a0:ff:13:c4 dst_mac 02:6b:3f:10:72:92 vlan_id 1439 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11266 flower src_mac 02:00:c7:bc:5b:ca dst_mac 02:b1:4d:76:cc:72 vlan_id 1364 vlan_ethtype 0x0800 src_ip 11.133.230.21 dst_ip 115.48.72.118 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11267 flower src_mac 02:e2:7b:c7:35:de dst_mac 02:2c:eb:37:95:b0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11268 flower src_mac 02:f8:06:45:77:68 dst_mac 02:17:ab:f4:78:56 vlan_id 1820 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11269 flower src_mac 02:5e:ea:c0:e1:9d dst_mac 02:d6:df:7f:d7:77 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11270 flower src_mac 02:05:18:22:45:03 dst_mac 02:5b:ab:48:c0:a7 vlan_id 3781 vlan_ethtype ipv4 src_ip 85.225.112.17 dst_ip 20.226.78.191 ip_proto tcp src_port 2115 dst_port 56235 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11271 flower src_mac 02:95:fa:06:eb:4f dst_mac 02:e3:69:bd:11:80 vlan_id 1038 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11272 flower src_mac 02:5f:46:79:e1:18 dst_mac 02:bc:8c:0f:7f:0b vlan_id 305 vlan_ethtype ip src_ip 25.70.73.51 dst_ip 61.248.11.13 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11273 flower src_mac 02:6e:82:e6:be:e1 dst_mac 02:4b:f3:6a:1d:62 src_ip 66.60.160.62 dst_ip 46.42.41.161 ip_proto udp src_port 34085 dst_port 28584 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11274 flower src_mac 02:db:d0:f8:aa:b1 dst_mac 02:db:8d:3a:cd:03 vlan_id 1922 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11275 flower src_mac 02:99:1c:87:f7:11 dst_mac 02:26:d7:7b:b7:7d vlan_id 3884 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11276 flower src_mac 02:e2:c9:f8:0c:f8 dst_mac 02:26:af:77:25:8b action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11277 flower src_mac 02:57:c2:57:14:02 dst_mac 02:ab:15:b3:d4:0b src_ip 112.6.129.36 dst_ip 19.201.161.24 ip_proto tcp src_port 15952 dst_port 19648 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11278 flower src_mac 02:2b:01:68:1f:fb dst_mac 02:cb:9c:ce:94:0f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11279 flower src_mac 02:81:bf:4b:5c:53 dst_mac 02:54:32:ba:04:25 vlan_id 2504 vlan_ethtype 0x0800 src_ip 72.72.204.129 dst_ip 15.235.165.66 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11280 flower src_mac 02:a3:23:37:5f:97 dst_mac 02:1d:90:90:b8:40 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11281 flower src_mac 02:b7:46:bd:78:75 dst_mac 02:2b:94:46:1f:4e src_ip 39.147.49.180 dst_ip 80.190.87.47 ip_proto tcp src_port 44294 dst_port 55685 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11282 flower src_mac 02:e6:89:07:9a:4e dst_mac 02:e2:34:a6:d4:86 vlan_id 2737 vlan_ethtype 0x0800 src_ip 102.220.71.162 dst_ip 119.119.95.39 ip_proto udp src_port 61918 dst_port 7375 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11283 flower src_mac 02:f4:99:5d:85:a2 dst_mac 02:ae:e6:59:85:30 vlan_id 1347 vlan_ethtype ipv4 src_ip 106.65.82.1 dst_ip 81.245.109.64 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11284 flower src_mac 02:47:4f:69:a7:b4 dst_mac 02:6b:fa:10:4d:4a src_ip 61.95.34.245 dst_ip 46.9.119.102 ip_proto icmp code 90 type 11 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11285 flower src_mac 02:f5:37:44:84:22 dst_mac 02:cc:e1:c5:d1:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:d4:6f:75:2d:28 dst_mac 02:b9:31:dd:98:0d vlan_id 197 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11287 flower src_mac 02:fb:ac:13:c9:0e dst_mac 02:ef:fb:bc:be:ce vlan_id 1799 vlan_ethtype ip src_ip 70.18.165.223 dst_ip 28.48.56.116 ip_proto udp src_port 62189 dst_port 2256 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11288 flower src_mac 02:05:dd:f1:15:f9 dst_mac 02:15:ec:42:99:ba vlan_id 211 vlan_ethtype ip src_ip 48.5.76.173 dst_ip 25.194.188.242 ip_proto udp src_port 39523 dst_port 39294 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11289 flower src_mac 02:cd:8e:52:f0:0b dst_mac 02:67:5a:79:33:3f vlan_id 3797 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11290 flower src_mac 02:8c:20:cf:f2:cc dst_mac 02:72:d0:dd:dc:a8 vlan_id 3117 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11291 flower src_mac 02:b1:f7:4e:d0:8e dst_mac 02:ac:5b:0d:36:ff vlan_id 1074 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11292 flower src_mac 02:27:5c:a0:22:76 dst_mac 02:90:d6:28:a1:1d vlan_id 569 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11293 flower src_mac 02:f9:d1:00:0c:1d dst_mac 02:bd:fd:cf:57:a6 src_ip 32.162.83.153 dst_ip 71.146.101.8 ip_proto tcp src_port 23261 dst_port 5116 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11294 flower src_mac 02:2a:8d:af:80:ba dst_mac 02:b5:ae:59:c7:0a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:f5:2e:5e:8f:e0 dst_mac 02:eb:eb:c0:f5:4a vlan_id 621 vlan_ethtype 0x0800 src_ip 64.62.220.87 dst_ip 65.55.229.27 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:58:49:0b:82:f2 dst_mac 02:95:76:0d:18:4b vlan_id 3517 vlan_ethtype ip src_ip 81.124.204.155 dst_ip 34.134.132.12 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11297 flower src_mac 02:14:b5:d2:10:7c dst_mac 02:d2:79:bf:96:8a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11298 flower src_mac 02:32:70:0d:1e:b8 dst_mac 02:40:ac:6d:15:3d vlan_id 915 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11299 flower src_mac 02:53:80:8f:35:9d dst_mac 02:cc:b4:df:f3:78 vlan_id 473 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11300 flower src_mac 02:ee:4f:58:ba:cd dst_mac 02:a5:1f:00:aa:d2 action drop && tc filter add dev swp1 ingress protocol ip pref 11301 flower src_mac 02:1a:59:fe:d7:3d dst_mac 02:7c:9e:01:7c:67 src_ip 38.122.48.94 dst_ip 17.249.14.81 ip_proto icmp code 43 type 8 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11302 flower src_mac 02:37:b3:f0:fa:de dst_mac 02:21:2d:d8:ec:a1 src_ip 62.19.190.67 dst_ip 53.67.197.13 ip_proto udp src_port 56259 dst_port 28350 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11303 flower src_mac 02:fb:99:59:71:0d dst_mac 02:75:3b:a2:33:65 vlan_id 2521 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11304 flower src_mac 02:75:42:21:88:82 dst_mac 02:9a:0f:76:95:61 vlan_id 8 vlan_ethtype ipv4 src_ip 13.102.216.60 dst_ip 33.158.60.143 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11305 flower src_mac 02:5c:06:f0:81:a6 dst_mac 02:41:d0:33:b9:80 vlan_id 1768 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11306 flower src_mac 02:e5:13:5e:09:e5 dst_mac 02:61:f5:67:aa:40 vlan_id 2952 vlan_ethtype ip src_ip 95.22.89.182 dst_ip 75.39.97.135 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11307 flower src_mac 02:fb:39:64:46:74 dst_mac 02:f2:1d:9e:28:29 src_ip 15.104.216.137 dst_ip 93.226.251.121 ip_proto tcp src_port 33477 dst_port 31599 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11308 flower src_mac 02:cb:17:f6:85:48 dst_mac 02:d4:4f:59:fb:03 action trap && tc filter add dev swp1 ingress protocol ip pref 11309 flower src_mac 02:76:d7:7b:8b:7c dst_mac 02:0f:09:2e:21:e5 src_ip 87.236.165.114 dst_ip 17.56.241.137 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11310 flower src_mac 02:ea:be:49:14:cf dst_mac 02:0f:5e:2f:4a:34 vlan_id 2225 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11311 flower src_mac 02:4f:c8:d2:7a:9e dst_mac 02:d0:56:b9:85:c6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11312 flower src_mac 02:6d:de:d2:90:90 dst_mac 02:4b:c2:78:2b:d0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11313 flower src_mac 02:37:69:41:59:b6 dst_mac 02:b3:5a:83:6e:a7 vlan_id 1485 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11314 flower src_mac 02:74:3a:02:ed:07 dst_mac 02:e2:31:f3:4e:bc vlan_id 626 vlan_ethtype ipv4 src_ip 100.94.100.55 dst_ip 95.171.163.113 ip_proto tcp src_port 62110 dst_port 42317 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11315 flower src_mac 02:24:a2:e2:d1:45 dst_mac 02:6a:19:71:4c:26 vlan_id 673 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11316 flower src_mac 02:50:c1:2a:3b:0e dst_mac 02:02:f7:f5:c6:88 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11317 flower src_mac 02:c8:bd:27:cd:90 dst_mac 02:71:8a:85:0e:53 src_ip 105.252.142.48 dst_ip 23.9.210.24 ip_proto icmp code 180 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11318 flower src_mac 02:03:05:36:b0:de dst_mac 02:1b:77:29:a1:2f vlan_id 3996 vlan_ethtype ip src_ip 64.226.135.153 dst_ip 105.200.199.124 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11319 flower src_mac 02:e2:29:31:28:8b dst_mac 02:03:e0:47:96:92 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11320 flower src_mac 02:3f:71:5b:81:a6 dst_mac 02:d9:0f:9b:4a:d9 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11321 flower src_mac 02:f7:db:f6:aa:77 dst_mac 02:83:05:70:c5:8d action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11322 flower src_mac 02:c2:0c:50:21:43 dst_mac 02:53:5b:03:eb:16 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11323 flower src_mac 02:f7:01:32:34:00 dst_mac 02:67:c4:4a:32:4c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11324 flower src_mac 02:82:a0:d0:3a:04 dst_mac 02:c2:f4:e8:0f:36 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11325 flower src_mac 02:2a:5d:b0:61:85 dst_mac 02:2b:17:91:c3:0c vlan_id 3030 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11326 flower src_mac 02:5b:dc:3b:44:76 dst_mac 02:bb:8b:79:64:3f src_ip 34.63.129.142 dst_ip 114.93.97.24 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11327 flower src_mac 02:20:10:42:94:27 dst_mac 02:fa:c3:54:6a:b1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11328 flower src_mac 02:d6:a7:5a:3d:4a dst_mac 02:79:f5:c4:58:33 vlan_id 2638 vlan_ethtype ip src_ip 65.184.100.165 dst_ip 31.209.151.161 ip_proto udp src_port 36062 dst_port 17425 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11329 flower src_mac 02:69:1b:07:57:77 dst_mac 02:7a:4c:81:76:28 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:87:72:22:5a:7a dst_mac 02:90:12:f5:63:d1 vlan_id 3438 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11331 flower src_mac 02:4c:4c:5c:64:29 dst_mac 02:59:4b:67:67:be vlan_id 3624 vlan_ethtype ipv4 src_ip 106.29.73.128 dst_ip 50.14.103.21 ip_proto udp src_port 55920 dst_port 38419 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11332 flower src_mac 02:98:93:8e:ca:db dst_mac 02:6a:b7:ca:43:68 vlan_id 3886 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11333 flower src_mac 02:91:cb:6e:d6:6c dst_mac 02:4c:65:df:4f:80 vlan_id 1223 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:5d:8c:f0:86:c9 dst_mac 02:42:f5:2f:c8:2c vlan_id 2384 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11335 flower src_mac 02:98:92:d3:4a:50 dst_mac 02:fc:bd:02:1a:af src_ip 122.196.212.242 dst_ip 85.73.92.239 ip_proto icmp code 254 type 12 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11336 flower src_mac 02:49:d1:53:dd:72 dst_mac 02:a7:aa:f5:36:93 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11337 flower src_mac 02:b7:d2:11:24:04 dst_mac 02:e1:d4:14:a8:12 vlan_id 3745 vlan_ethtype ipv4 src_ip 97.135.111.162 dst_ip 43.150.167.81 ip_proto udp src_port 47599 dst_port 46695 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11338 flower src_mac 02:16:30:c8:e9:22 dst_mac 02:2a:ad:2e:45:5f src_ip 97.230.61.180 dst_ip 70.134.29.203 ip_proto tcp src_port 29384 dst_port 6388 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11339 flower src_mac 02:ba:21:73:a3:e4 dst_mac 02:b9:de:84:07:c9 vlan_id 1447 vlan_ethtype ip src_ip 38.189.198.124 dst_ip 110.232.158.209 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11340 flower src_mac 02:34:eb:2a:fb:ee dst_mac 02:8b:eb:c4:df:81 vlan_id 295 vlan_ethtype ipv4 src_ip 84.35.51.238 dst_ip 80.255.33.29 ip_proto tcp src_port 21794 dst_port 11398 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11341 flower src_mac 02:96:1b:9c:bd:b1 dst_mac 02:bf:b8:00:b8:66 vlan_id 1252 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11342 flower src_mac 02:cf:ee:b8:8b:81 dst_mac 02:5e:f9:cc:49:b0 vlan_id 2712 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11343 flower src_mac 02:66:f8:41:6d:1b dst_mac 02:fe:ec:b0:a3:37 src_ip 110.174.70.69 dst_ip 73.118.54.181 ip_proto udp src_port 2071 dst_port 35827 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11344 flower src_mac 02:7c:f8:15:44:e2 dst_mac 02:24:0a:72:6a:f3 src_ip 92.209.216.18 dst_ip 20.36.82.47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11345 flower src_mac 02:89:8a:d1:c1:6a dst_mac 02:8d:96:6e:f5:69 vlan_id 748 vlan_ethtype ipv4 src_ip 91.230.252.190 dst_ip 58.123.57.156 ip_proto tcp src_port 38 dst_port 30676 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11346 flower src_mac 02:5d:b9:9c:59:d0 dst_mac 02:1a:5b:bc:a1:f5 src_ip 54.86.30.140 dst_ip 100.225.180.33 ip_proto icmp code 64 type 5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11347 flower src_mac 02:6f:e7:0c:9c:17 dst_mac 02:70:a9:63:80:b5 vlan_id 2627 vlan_ethtype ip src_ip 104.71.173.247 dst_ip 111.19.200.30 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11348 flower src_mac 02:7c:4a:46:fb:26 dst_mac 02:cc:c9:c2:75:e0 vlan_id 1364 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11349 flower src_mac 02:a0:34:5f:2c:a8 dst_mac 02:f7:de:78:64:ca src_ip 26.46.221.201 dst_ip 36.159.151.166 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11350 flower src_mac 02:78:bc:0a:c2:00 dst_mac 02:cf:95:60:37:6d vlan_id 1791 vlan_ethtype ipv4 src_ip 104.238.166.198 dst_ip 83.13.215.189 ip_proto tcp src_port 46844 dst_port 26290 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11351 flower src_mac 02:6e:a6:51:a6:fd dst_mac 02:01:04:af:96:4b src_ip 31.118.241.10 dst_ip 103.109.144.132 ip_proto udp src_port 42003 dst_port 16091 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11352 flower src_mac 02:3c:99:24:ec:12 dst_mac 02:fd:65:b7:63:f9 src_ip 90.5.202.45 dst_ip 107.7.88.139 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11353 flower src_mac 02:14:31:2b:97:c9 dst_mac 02:42:01:bd:df:eb vlan_id 2307 vlan_ethtype ip src_ip 46.243.245.166 dst_ip 101.36.133.95 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11354 flower src_mac 02:58:1f:51:d7:1b dst_mac 02:fa:73:d2:ba:30 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11355 flower src_mac 02:72:3d:f9:77:76 dst_mac 02:9d:f3:5b:bf:95 src_ip 114.77.30.162 dst_ip 28.167.178.205 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11356 flower src_mac 02:b1:9a:9f:e5:51 dst_mac 02:9f:10:32:73:ec action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11357 flower src_mac 02:d1:30:df:9f:aa dst_mac 02:32:1d:df:54:07 vlan_id 3110 vlan_ethtype ipv4 src_ip 69.29.217.16 dst_ip 49.120.60.2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11358 flower src_mac 02:09:66:2c:71:32 dst_mac 02:e4:5e:bf:bd:07 vlan_id 3565 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11359 flower src_mac 02:d2:56:f4:b1:22 dst_mac 02:2a:04:33:69:53 vlan_id 59 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11360 flower src_mac 02:a7:6d:5c:49:29 dst_mac 02:d8:fc:73:1f:ec src_ip 115.193.82.101 dst_ip 69.250.46.4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11361 flower src_mac 02:6e:74:c4:b1:20 dst_mac 02:7c:ed:77:6c:07 vlan_id 945 vlan_ethtype ipv4 src_ip 50.251.2.106 dst_ip 17.196.83.81 ip_proto udp src_port 30260 dst_port 28202 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11362 flower src_mac 02:73:53:65:95:fa dst_mac 02:69:51:45:28:9b vlan_id 2093 vlan_ethtype 0x0800 src_ip 43.252.229.120 dst_ip 61.208.121.66 action pass && tc filter add dev swp1 ingress protocol ip pref 11363 flower src_mac 02:f4:78:5f:6d:a8 dst_mac 02:ba:e3:43:eb:34 src_ip 74.123.179.151 dst_ip 22.15.97.26 ip_proto tcp src_port 42428 dst_port 6283 action drop && tc filter add dev swp1 ingress protocol ip pref 11364 flower src_mac 02:54:6b:c9:38:08 dst_mac 02:1a:5d:29:ff:de src_ip 45.104.200.65 dst_ip 50.140.53.140 ip_proto icmp code 17 type 4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11365 flower src_mac 02:6d:9e:5d:5b:61 dst_mac 02:74:b2:3a:48:f1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11366 flower src_mac 02:35:12:ae:27:e6 dst_mac 02:fe:e9:02:19:9d vlan_id 40 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11367 flower src_mac 02:76:44:95:1e:cf dst_mac 02:6c:0b:4e:84:57 vlan_id 1162 vlan_ethtype ip src_ip 74.56.213.102 dst_ip 88.153.205.13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11368 flower src_mac 02:22:71:21:ff:60 dst_mac 02:1a:e9:e8:3e:85 vlan_id 3381 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11369 flower src_mac 02:0f:d3:70:f0:bd dst_mac 02:71:86:b9:93:15 src_ip 11.4.249.242 dst_ip 77.6.39.218 ip_proto icmp code 236 type 0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11370 flower src_mac 02:0a:a1:c3:40:92 dst_mac 02:ad:12:e3:b7:69 vlan_id 1713 vlan_ethtype 0x0800 src_ip 44.126.27.112 dst_ip 121.119.241.157 ip_proto udp src_port 5434 dst_port 38095 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11371 flower src_mac 02:7d:82:d8:be:88 dst_mac 02:f0:66:53:e8:b1 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11372 flower src_mac 02:f9:62:db:0b:58 dst_mac 02:32:45:57:70:97 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11373 flower src_mac 02:c0:6b:5e:3f:1b dst_mac 02:28:37:3c:1f:67 vlan_id 509 vlan_ethtype ipv4 src_ip 26.92.18.104 dst_ip 65.120.110.63 ip_proto tcp src_port 38040 dst_port 54157 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11374 flower src_mac 02:9b:ac:ef:f5:ae dst_mac 02:a6:80:6e:06:57 vlan_id 1321 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11375 flower src_mac 02:6a:d5:a5:35:22 dst_mac 02:89:36:47:c2:19 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11376 flower src_mac 02:29:39:cb:09:5a dst_mac 02:b0:d8:ea:91:73 vlan_id 2296 vlan_ethtype ipv4 src_ip 94.81.248.103 dst_ip 110.195.217.184 ip_proto tcp src_port 57442 dst_port 11843 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11377 flower src_mac 02:1a:8c:0f:96:16 dst_mac 02:f2:03:aa:12:70 src_ip 53.177.131.186 dst_ip 118.92.167.233 ip_proto icmp code 13 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11378 flower src_mac 02:05:3a:c5:3e:a0 dst_mac 02:5f:75:8d:d6:85 vlan_id 1569 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11379 flower src_mac 02:39:25:2a:72:04 dst_mac 02:26:d5:7f:88:90 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11380 flower src_mac 02:38:df:63:34:7c dst_mac 02:47:ae:ce:70:cc src_ip 90.94.152.130 dst_ip 113.20.30.68 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11381 flower src_mac 02:3d:1d:91:6c:c1 dst_mac 02:50:b2:6d:80:0d action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11382 flower src_mac 02:54:0e:19:bb:30 dst_mac 02:b4:9b:30:64:db action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11383 flower src_mac 02:63:e0:a4:df:af dst_mac 02:99:4c:cb:5a:99 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11384 flower src_mac 02:b8:3d:90:e1:5b dst_mac 02:6e:50:9f:4d:10 action trap && tc filter add dev swp1 ingress protocol ip pref 11385 flower src_mac 02:c9:8e:05:1c:11 dst_mac 02:19:ac:38:d0:e1 src_ip 101.15.76.122 dst_ip 27.96.195.60 ip_proto tcp src_port 37163 dst_port 57400 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11386 flower src_mac 02:f2:ec:7e:3b:c5 dst_mac 02:60:56:95:5c:53 vlan_id 863 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11387 flower src_mac 02:d4:e0:57:8f:d6 dst_mac 02:ed:8f:b2:c5:2f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11388 flower src_mac 02:0d:6e:4c:00:d3 dst_mac 02:b2:89:ce:2d:dd src_ip 98.85.149.161 dst_ip 14.255.40.145 ip_proto tcp src_port 30501 dst_port 27353 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11389 flower src_mac 02:cf:b9:52:b9:f3 dst_mac 02:c0:68:72:2b:9f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11390 flower src_mac 02:41:e9:a4:60:80 dst_mac 02:36:31:c6:7b:0d vlan_id 2988 vlan_ethtype ipv4 src_ip 98.92.221.144 dst_ip 20.226.31.239 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11391 flower src_mac 02:fd:41:cd:3f:f5 dst_mac 02:f4:58:09:18:17 vlan_id 4092 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11392 flower src_mac 02:33:8c:bf:d6:d8 dst_mac 02:a7:30:83:52:39 vlan_id 1980 vlan_ethtype 0x0800 src_ip 63.125.196.19 dst_ip 85.135.41.151 ip_proto tcp src_port 35065 dst_port 39387 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11393 flower src_mac 02:f3:30:7c:7d:dd dst_mac 02:c4:43:a8:dd:39 vlan_id 3582 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11394 flower src_mac 02:fe:d0:09:4d:3f dst_mac 02:e7:eb:0c:b3:3c vlan_id 3967 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11395 flower src_mac 02:8c:5d:cb:06:cf dst_mac 02:66:9c:97:3d:32 src_ip 30.15.39.250 dst_ip 83.179.252.198 ip_proto udp src_port 17247 dst_port 38066 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11396 flower src_mac 02:76:3a:ca:37:b3 dst_mac 02:64:a1:df:d2:54 vlan_id 1485 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11397 flower src_mac 02:ad:ae:2d:84:40 dst_mac 02:30:e4:ae:e2:79 vlan_id 2002 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11398 flower src_mac 02:d7:be:ec:fc:80 dst_mac 02:09:cb:66:d0:ba vlan_id 2207 vlan_ethtype 0x0800 src_ip 54.88.139.162 dst_ip 52.34.21.220 ip_proto udp src_port 39996 dst_port 18235 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11399 flower src_mac 02:64:b3:35:70:16 dst_mac 02:9c:df:31:d9:dd vlan_id 202 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11400 flower src_mac 02:52:fa:f5:92:89 dst_mac 02:f7:81:10:1c:89 vlan_id 1999 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11401 flower src_mac 02:3b:17:b4:0b:c7 dst_mac 02:21:03:7d:0e:79 vlan_id 4017 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11402 flower src_mac 02:2a:b2:42:4e:bf dst_mac 02:5f:e3:39:a6:a8 vlan_id 2794 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11403 flower src_mac 02:32:84:77:c4:ef dst_mac 02:1b:3a:62:c7:b8 vlan_id 1023 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11404 flower src_mac 02:23:db:83:80:b2 dst_mac 02:e9:88:85:d0:7b vlan_id 2052 vlan_ethtype ip src_ip 76.17.28.166 dst_ip 17.234.157.123 ip_proto udp src_port 29647 dst_port 7306 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11405 flower src_mac 02:d0:ca:6c:af:7e dst_mac 02:cc:0c:04:f6:f1 vlan_id 3658 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11406 flower src_mac 02:47:c5:b4:fd:ba dst_mac 02:e5:e6:3b:fb:ee vlan_id 1210 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11407 flower src_mac 02:1a:72:af:3b:75 dst_mac 02:22:58:47:63:4b vlan_id 3815 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11408 flower src_mac 02:44:61:b6:14:b0 dst_mac 02:03:12:fb:2f:21 vlan_id 1553 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11409 flower src_mac 02:45:e8:39:b7:57 dst_mac 02:55:5a:04:47:34 vlan_id 1950 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11410 flower src_mac 02:c7:b2:0d:40:2a dst_mac 02:7e:88:bb:87:dd vlan_id 262 vlan_ethtype 0x0800 src_ip 105.189.76.229 dst_ip 44.170.42.12 ip_proto udp src_port 53595 dst_port 26519 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11411 flower src_mac 02:ae:46:73:5f:ed dst_mac 02:ef:6c:5d:c7:5d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11412 flower src_mac 02:6a:b3:c1:98:16 dst_mac 02:e1:7f:52:3f:b5 src_ip 123.134.27.236 dst_ip 23.198.87.93 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11413 flower src_mac 02:9e:58:10:95:2d dst_mac 02:23:61:68:59:99 vlan_id 3587 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11414 flower src_mac 02:a0:ba:3e:e3:34 dst_mac 02:64:4d:c5:f5:a3 vlan_id 3727 vlan_ethtype 0x0800 src_ip 51.169.154.202 dst_ip 35.118.46.85 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11415 flower src_mac 02:9b:f9:7c:ca:01 dst_mac 02:4e:43:08:ee:34 vlan_id 3187 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11416 flower src_mac 02:12:7a:75:b6:b6 dst_mac 02:b7:d1:2d:3b:1a vlan_id 125 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11417 flower src_mac 02:24:97:91:3f:d8 dst_mac 02:b4:a6:dd:91:15 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11418 flower src_mac 02:72:87:ec:eb:d8 dst_mac 02:a4:b9:a9:88:9e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11419 flower src_mac 02:87:65:45:41:7e dst_mac 02:26:9e:43:d4:ef vlan_id 219 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11420 flower src_mac 02:9f:19:09:3d:26 dst_mac 02:23:36:1b:dd:3d action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11421 flower src_mac 02:15:da:98:8c:eb dst_mac 02:fb:9c:f9:10:fd action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11422 flower src_mac 02:c2:01:40:c5:65 dst_mac 02:79:83:2f:82:6a action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11423 flower src_mac 02:86:55:4f:d9:6f dst_mac 02:ad:e3:45:32:98 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11424 flower src_mac 02:94:a2:9c:00:85 dst_mac 02:0d:ea:21:36:0f action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11425 flower src_mac 02:47:b6:ac:39:e5 dst_mac 02:c9:c3:39:37:c4 src_ip 54.204.173.250 dst_ip 100.134.53.91 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11426 flower src_mac 02:98:9f:8b:fd:2e dst_mac 02:22:2f:e9:ab:89 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11427 flower src_mac 02:28:40:f8:cf:c7 dst_mac 02:67:88:30:bc:31 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11428 flower src_mac 02:30:0e:d7:d5:56 dst_mac 02:9a:42:7d:f3:e9 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11429 flower src_mac 02:0b:33:bc:76:eb dst_mac 02:a2:f6:6c:cd:ce action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11430 flower src_mac 02:a2:a9:e4:6a:44 dst_mac 02:8b:ae:bb:6d:4a vlan_id 414 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11431 flower src_mac 02:bf:f1:de:66:58 dst_mac 02:9e:52:b7:a1:68 src_ip 101.72.83.29 dst_ip 76.240.172.115 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11432 flower src_mac 02:53:f8:30:40:a1 dst_mac 02:f4:35:88:1a:59 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11433 flower src_mac 02:9d:8d:77:be:a9 dst_mac 02:4b:4f:0f:35:06 src_ip 110.49.0.14 dst_ip 103.100.83.114 ip_proto icmp code 15 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11434 flower src_mac 02:5f:15:e1:d0:60 dst_mac 02:cc:48:70:6c:8b vlan_id 3575 vlan_ethtype ip src_ip 99.36.147.193 dst_ip 51.1.79.241 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11435 flower src_mac 02:92:fe:99:ee:04 dst_mac 02:68:0f:2b:02:64 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11436 flower src_mac 02:99:d4:0d:64:c7 dst_mac 02:d6:19:44:a8:e3 src_ip 81.50.249.223 dst_ip 11.64.161.56 ip_proto udp src_port 2964 dst_port 21401 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11437 flower src_mac 02:e3:4d:60:3e:01 dst_mac 02:87:ff:59:e7:c3 vlan_id 1200 vlan_ethtype ip src_ip 106.7.203.178 dst_ip 73.85.74.60 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11438 flower src_mac 02:3f:ef:91:4e:ef dst_mac 02:97:d6:86:c4:26 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11439 flower src_mac 02:e0:22:75:7c:de dst_mac 02:24:42:7d:be:6c src_ip 62.135.241.120 dst_ip 35.14.141.25 action trap && tc filter add dev swp1 ingress protocol ip pref 11440 flower src_mac 02:73:5d:0e:47:3b dst_mac 02:fe:bd:34:74:dd src_ip 59.132.183.149 dst_ip 123.93.184.42 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11441 flower src_mac 02:39:cc:ee:d1:11 dst_mac 02:be:c1:5c:1a:93 vlan_id 1271 vlan_ethtype 0x0800 src_ip 69.93.96.128 dst_ip 92.160.181.165 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11442 flower src_mac 02:e3:2c:0c:b0:ab dst_mac 02:ec:a5:5e:aa:13 src_ip 79.85.234.116 dst_ip 56.12.111.40 ip_proto icmp code 172 type 17 action drop && tc filter add dev swp1 ingress protocol ip pref 11443 flower src_mac 02:43:18:31:4b:f3 dst_mac 02:ae:38:96:e5:e0 src_ip 26.192.123.51 dst_ip 67.142.61.111 ip_proto tcp src_port 59025 dst_port 23535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11444 flower src_mac 02:f0:af:ed:5b:74 dst_mac 02:b3:4c:62:e0:f5 vlan_id 4059 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11445 flower src_mac 02:f8:22:57:65:60 dst_mac 02:90:52:fa:45:98 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11446 flower src_mac 02:93:9d:6e:dc:24 dst_mac 02:86:87:00:5f:6d vlan_id 2541 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:6a:27:23:17:bc dst_mac 02:1d:4a:7c:3f:d1 vlan_id 2260 vlan_ethtype ip src_ip 22.61.223.165 dst_ip 30.106.227.110 ip_proto udp src_port 47414 dst_port 45298 action drop && tc filter add dev swp1 ingress protocol ip pref 11448 flower src_mac 02:9f:46:4d:63:a3 dst_mac 02:e2:ab:c1:f2:0b src_ip 82.240.195.64 dst_ip 72.100.4.221 ip_proto udp src_port 60630 dst_port 11798 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11449 flower src_mac 02:48:5d:2b:98:c8 dst_mac 02:78:97:fb:8b:cf vlan_id 1922 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11450 flower src_mac 02:b8:25:92:fe:5e dst_mac 02:4c:1a:cc:77:a6 vlan_id 2032 vlan_ethtype ipv4 src_ip 30.96.179.159 dst_ip 31.250.159.183 ip_proto tcp src_port 22800 dst_port 23502 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11451 flower src_mac 02:22:da:a9:37:e1 dst_mac 02:08:cc:4b:8e:f6 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11452 flower src_mac 02:ab:5e:a2:bc:38 dst_mac 02:0c:fd:76:8d:36 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11453 flower src_mac 02:46:22:94:49:a6 dst_mac 02:1d:86:a3:01:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11454 flower src_mac 02:04:75:80:3a:fc dst_mac 02:9d:0c:31:eb:7e vlan_id 3719 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11455 flower src_mac 02:fe:50:46:64:1a dst_mac 02:19:bb:82:da:9c src_ip 51.158.224.66 dst_ip 68.138.13.246 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11456 flower src_mac 02:c1:ac:fe:a0:73 dst_mac 02:6a:c8:06:c3:71 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11457 flower src_mac 02:fd:b8:f6:6d:1a dst_mac 02:2a:a7:f0:be:89 vlan_id 763 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11458 flower src_mac 02:3f:9f:4d:82:5d dst_mac 02:d5:34:c2:f9:f7 src_ip 113.27.53.144 dst_ip 74.20.77.75 ip_proto tcp src_port 34190 dst_port 58996 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11459 flower src_mac 02:24:7d:3f:24:e0 dst_mac 02:c8:be:3f:a0:a3 src_ip 83.169.246.249 dst_ip 114.27.216.148 ip_proto icmp code 147 type 12 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11460 flower src_mac 02:f0:74:5c:ee:f4 dst_mac 02:ff:79:b1:eb:15 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11461 flower src_mac 02:39:db:33:c1:50 dst_mac 02:19:bf:8b:41:1e src_ip 109.148.37.168 dst_ip 95.226.233.235 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11462 flower src_mac 02:5f:28:9a:40:eb dst_mac 02:2b:1d:69:13:e9 vlan_id 3508 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11463 flower src_mac 02:83:02:11:df:84 dst_mac 02:76:94:33:53:f6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11464 flower src_mac 02:cd:c1:50:ff:01 dst_mac 02:30:b9:ed:be:95 vlan_id 110 vlan_ethtype ip src_ip 107.246.61.107 dst_ip 122.77.147.3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11465 flower src_mac 02:62:12:69:67:18 dst_mac 02:c0:b8:e5:9c:5e vlan_id 154 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11466 flower src_mac 02:e9:5b:da:2c:fb dst_mac 02:6a:a0:3e:48:30 vlan_id 3273 vlan_ethtype ipv4 src_ip 102.142.90.146 dst_ip 91.186.48.82 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11467 flower src_mac 02:2b:fc:aa:ef:54 dst_mac 02:f2:ab:15:f4:76 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11468 flower src_mac 02:70:b4:02:a5:04 dst_mac 02:04:32:99:76:49 vlan_id 1069 vlan_ethtype ipv4 src_ip 95.25.53.45 dst_ip 31.211.215.183 ip_proto udp src_port 34558 dst_port 13726 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11469 flower src_mac 02:3f:e7:31:2d:8c dst_mac 02:a1:10:cc:e6:f2 vlan_id 1428 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11470 flower src_mac 02:bb:70:a1:a9:a0 dst_mac 02:ec:55:03:03:cc action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11471 flower src_mac 02:5a:a6:4c:e2:48 dst_mac 02:84:97:79:a6:05 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11472 flower src_mac 02:cc:a9:ee:2f:c6 dst_mac 02:d9:15:3e:5c:6c vlan_id 3841 vlan_ethtype ip src_ip 29.255.199.128 dst_ip 98.86.11.178 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11473 flower src_mac 02:b1:3b:6a:9c:c6 dst_mac 02:d7:f3:24:39:a2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11474 flower src_mac 02:df:a1:b5:37:f4 dst_mac 02:ba:14:b9:d7:1f vlan_id 1232 vlan_ethtype 0x0800 src_ip 45.26.15.184 dst_ip 65.90.45.152 ip_proto udp src_port 33171 dst_port 16204 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11475 flower src_mac 02:3d:b8:c5:4d:75 dst_mac 02:8a:58:9b:2e:7b vlan_id 2855 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11476 flower src_mac 02:9f:8b:6f:0c:ed dst_mac 02:c9:7f:f0:7f:91 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11477 flower src_mac 02:48:2e:5c:c2:e1 dst_mac 02:07:e2:29:d4:33 vlan_id 1203 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11478 flower src_mac 02:cf:dc:6e:ae:df dst_mac 02:e4:cf:3b:7e:f4 vlan_id 4063 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11479 flower src_mac 02:a5:c6:9a:5b:f6 dst_mac 02:b0:c4:6b:f7:ec vlan_id 2270 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11480 flower src_mac 02:56:ae:84:0c:3b dst_mac 02:c3:d5:8e:11:5c action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11481 flower src_mac 02:46:4f:22:d5:0b dst_mac 02:0c:6b:55:6c:2d src_ip 56.56.18.233 dst_ip 60.12.239.172 ip_proto icmp code 135 type 8 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11482 flower src_mac 02:1f:65:97:26:86 dst_mac 02:70:0a:84:ad:c5 src_ip 40.248.58.54 dst_ip 13.189.138.110 ip_proto udp src_port 46735 dst_port 18209 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11483 flower src_mac 02:f3:40:64:21:5e dst_mac 02:7c:dd:70:80:3c action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11484 flower src_mac 02:e8:bc:d2:9c:ee dst_mac 02:7a:bd:d8:ce:82 src_ip 104.222.31.116 dst_ip 78.86.200.50 ip_proto udp src_port 52251 dst_port 34993 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11485 flower src_mac 02:e3:c0:47:fd:7c dst_mac 02:f1:5e:be:d2:e2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11486 flower src_mac 02:37:22:5e:36:db dst_mac 02:b5:74:1b:19:9d vlan_id 3032 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11487 flower src_mac 02:42:70:6f:2c:75 dst_mac 02:60:ab:24:e9:0b vlan_id 78 vlan_ethtype 0x0800 src_ip 97.10.2.250 dst_ip 104.208.39.136 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11488 flower src_mac 02:9d:7f:f4:3a:09 dst_mac 02:e4:24:56:ee:53 vlan_id 3601 vlan_ethtype ipv4 src_ip 65.122.148.247 dst_ip 110.162.96.6 ip_proto udp src_port 44889 dst_port 56802 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11489 flower src_mac 02:f8:32:04:45:1e dst_mac 02:5b:83:5e:ad:c9 vlan_id 3797 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11490 flower src_mac 02:b6:af:26:c9:2e dst_mac 02:03:d8:ec:23:86 vlan_id 995 vlan_ethtype 0x0800 src_ip 21.22.93.175 dst_ip 117.124.190.238 ip_proto udp src_port 51634 dst_port 17184 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11491 flower src_mac 02:ca:79:3e:be:2c dst_mac 02:45:99:a9:4f:98 vlan_id 3967 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11492 flower src_mac 02:15:2c:1c:99:c8 dst_mac 02:c6:cf:16:fd:95 src_ip 13.134.200.167 dst_ip 40.107.58.73 ip_proto udp src_port 58799 dst_port 7585 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11493 flower src_mac 02:cd:72:c0:c9:43 dst_mac 02:e5:07:02:b7:a1 vlan_id 3880 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11494 flower src_mac 02:27:d6:bd:91:c5 dst_mac 02:f2:23:d5:cb:54 action drop && tc filter add dev swp1 ingress protocol ip pref 11495 flower src_mac 02:27:8a:4c:9e:54 dst_mac 02:b1:56:80:7c:cf src_ip 36.92.171.165 dst_ip 87.99.214.45 ip_proto tcp src_port 61252 dst_port 34156 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11496 flower src_mac 02:13:24:71:0b:7b dst_mac 02:c9:a4:8f:d1:62 src_ip 33.53.0.206 dst_ip 102.106.146.190 ip_proto icmp code 154 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11497 flower src_mac 02:23:dc:33:f7:f8 dst_mac 02:ea:0f:64:dc:8a vlan_id 745 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11498 flower src_mac 02:f2:64:10:15:9a dst_mac 02:48:af:c5:5e:af action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11499 flower src_mac 02:fc:9b:c3:e7:eb dst_mac 02:ea:91:f2:71:d1 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11500 flower src_mac 02:fe:7f:20:40:fb dst_mac 02:b1:7a:98:1d:b4 src_ip 52.164.96.165 dst_ip 112.3.10.150 ip_proto tcp src_port 3007 dst_port 37733 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11501 flower src_mac 02:22:a8:b8:7c:a8 dst_mac 02:be:d5:fc:1b:eb src_ip 77.180.32.129 dst_ip 84.115.116.156 ip_proto icmp code 250 type 0 action pass && tc filter add dev swp1 ingress protocol ip pref 11502 flower src_mac 02:15:0e:24:55:35 dst_mac 02:1c:8d:8c:a0:ee src_ip 124.242.94.179 dst_ip 112.41.129.19 ip_proto udp src_port 60710 dst_port 16979 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11503 flower src_mac 02:d6:fa:a7:6c:d3 dst_mac 02:d5:01:65:f2:cb src_ip 33.206.224.1 dst_ip 83.113.189.95 ip_proto tcp src_port 19530 dst_port 18385 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11504 flower src_mac 02:ae:c2:1a:e8:e0 dst_mac 02:c6:0b:63:16:35 vlan_id 2850 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11505 flower src_mac 02:0d:dc:b3:67:dd dst_mac 02:6d:81:5a:8d:f8 src_ip 28.136.139.70 dst_ip 70.62.112.23 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11506 flower src_mac 02:d9:80:cc:fa:5e dst_mac 02:0c:5f:0e:3c:7e action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11507 flower src_mac 02:05:82:05:75:c9 dst_mac 02:8e:e3:2a:6e:7a vlan_id 2059 vlan_ethtype 0x0800 src_ip 15.172.0.44 dst_ip 126.164.241.8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11508 flower src_mac 02:35:4e:75:47:3a dst_mac 02:bf:83:85:52:ce vlan_id 2129 vlan_ethtype ip src_ip 117.99.19.241 dst_ip 122.165.26.8 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11509 flower src_mac 02:8c:82:d7:7a:27 dst_mac 02:90:52:a7:84:7d action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11510 flower src_mac 02:f7:21:b8:53:4b dst_mac 02:02:b2:ae:9d:75 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11511 flower src_mac 02:da:06:d7:77:72 dst_mac 02:65:e5:d3:73:5b src_ip 57.167.247.54 dst_ip 21.39.27.178 ip_proto icmp code 80 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11512 flower src_mac 02:6c:08:7e:4b:49 dst_mac 02:1c:de:3c:54:31 vlan_id 2334 vlan_ethtype ipv4 src_ip 63.253.130.101 dst_ip 36.165.93.55 ip_proto udp src_port 55890 dst_port 25546 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11513 flower src_mac 02:6f:af:26:4e:c9 dst_mac 02:99:04:ad:f2:89 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11514 flower src_mac 02:3d:a1:3a:66:fd dst_mac 02:2f:46:83:79:b7 src_ip 96.218.117.65 dst_ip 26.115.80.148 ip_proto icmp code 221 type 14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11515 flower src_mac 02:da:06:e5:1e:2e dst_mac 02:a8:c2:ea:7a:b3 vlan_id 2024 vlan_ethtype ip src_ip 17.226.134.47 dst_ip 104.126.74.222 ip_proto udp src_port 55959 dst_port 16365 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11516 flower src_mac 02:cb:6d:4d:0f:f9 dst_mac 02:c8:71:37:90:59 vlan_id 3272 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11517 flower src_mac 02:84:13:78:29:5b dst_mac 02:70:27:a2:54:dd action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11518 flower src_mac 02:64:f4:40:36:24 dst_mac 02:a9:84:b3:79:98 vlan_id 113 vlan_ethtype ip src_ip 16.126.222.57 dst_ip 39.101.50.246 ip_proto udp src_port 29128 dst_port 33970 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11519 flower src_mac 02:fd:53:ab:e8:51 dst_mac 02:d2:bc:9f:19:48 vlan_id 2785 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11520 flower src_mac 02:0a:35:a7:9d:0f dst_mac 02:84:26:0b:c7:e5 src_ip 25.91.221.204 dst_ip 54.194.38.173 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11521 flower src_mac 02:ac:e7:82:ab:5e dst_mac 02:4f:dd:c7:84:f1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11522 flower src_mac 02:b5:35:6d:65:43 dst_mac 02:3b:5b:bb:6a:71 vlan_id 3447 vlan_ethtype ipv4 src_ip 24.105.124.221 dst_ip 61.33.126.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11523 flower src_mac 02:f4:66:6a:7d:58 dst_mac 02:ed:ee:93:6c:cd vlan_id 2826 vlan_ethtype 0x0800 src_ip 63.130.137.46 dst_ip 117.77.38.16 ip_proto tcp src_port 47641 dst_port 50261 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11524 flower src_mac 02:06:52:e9:b2:9b dst_mac 02:b6:86:25:7e:02 src_ip 42.112.225.8 dst_ip 57.101.89.89 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11525 flower src_mac 02:b6:de:65:e0:4b dst_mac 02:7b:fb:5d:25:8c src_ip 90.237.190.114 dst_ip 68.213.202.151 ip_proto tcp src_port 37053 dst_port 17423 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11526 flower src_mac 02:54:d2:c5:ff:a2 dst_mac 02:31:09:0e:fd:9d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11527 flower src_mac 02:89:1d:fa:56:ff dst_mac 02:b3:5a:e5:d3:70 vlan_id 3058 vlan_ethtype ipv4 src_ip 116.90.134.45 dst_ip 104.131.61.100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11528 flower src_mac 02:b5:9f:4c:f1:c3 dst_mac 02:ff:49:8c:ca:0b vlan_id 1911 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11529 flower src_mac 02:a8:17:b6:92:29 dst_mac 02:30:b4:8b:16:15 vlan_id 1372 vlan_ethtype ip src_ip 37.112.155.165 dst_ip 51.75.43.226 ip_proto udp src_port 17946 dst_port 33144 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11530 flower src_mac 02:5b:2e:b7:a5:d0 dst_mac 02:c5:75:ea:7f:7c action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11531 flower src_mac 02:27:f9:20:52:86 dst_mac 02:09:f9:e6:73:92 src_ip 30.237.145.109 dst_ip 93.24.220.180 ip_proto icmp code 246 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11532 flower src_mac 02:03:fd:b5:2d:84 dst_mac 02:b0:f2:2f:f0:24 vlan_id 533 vlan_ethtype ip src_ip 19.78.148.210 dst_ip 81.143.103.185 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11533 flower src_mac 02:9e:62:05:85:da dst_mac 02:c4:f4:1b:ad:24 src_ip 88.37.107.100 dst_ip 49.184.250.130 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11534 flower src_mac 02:35:48:c8:d8:3d dst_mac 02:4b:a3:51:72:f8 vlan_id 2431 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11535 flower src_mac 02:1b:26:d2:09:e5 dst_mac 02:a5:22:75:0c:ad action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG agg2:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG agg2:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT aggregation 2] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG agg2:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:30:07 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG agg2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:30:07 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:30:07 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=24, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=24, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic 173.19
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1128' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.2, port 47284 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:30:11 PM UTC INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 54.44.60.171 dst_ip 111.140.25.52 ip_proto udp src_port 24499 dst_port 15335 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp1 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 54.44.60.171 dst_ip 111.140.25.52 ip_proto udp src_port 24499 dst_port 15335 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"111.140.25.52","src_ip":"54.44.60.171","dst_port":15335,"src_port":24499},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25967190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59886 Rx 59886 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 Tx Frames: 59886, Rx Frames: 59886, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25967520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 81092 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 Tx Frames: 101092, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 54.44.60.171 dst_ip 111.140.25.52 ip_proto udp src_port 24499 dst_port 15335 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp1 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 54.44.60.171 dst_ip 111.140.25.52 ip_proto udp src_port 24499 dst_port 15335 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b3e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64830 Rx 64830 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_111.140.25.52_src_ip_54.44.60.171_dst_port_15335_src_port_24499 Tx Frames: 84830, Rx Frames: 84830, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05)
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:33:03 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":210,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:33:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:33:04 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=25, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=25, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] 191.56
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1199' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.2, port 40204 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:33:05 PM UTC INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2034 && bridge vlan add dev swp2 vid 2034 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp1 vid 2034 && bridge vlan add dev swp2 vid 2034 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:13:36:aa:2c:13 dst_mac 02:93:ce:cb:70:33 vlan_id 2034 vlan_ethtype ip src_ip 12.185.97.71 dst_ip 37.197.241.112 ip_proto udp src_port 34894 dst_port 56803 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:13:36:aa:2c:13 dst_mac 02:93:ce:cb:70:33 vlan_id 2034 vlan_ethtype ip src_ip 12.185.97.71 dst_ip 37.197.241.112 ip_proto udp src_port 34894 dst_port 56803 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2034,"vlan_ethtype":"ip","dst_mac":"02:93:ce:cb:70:33","src_mac":"02:13:36:aa:2c:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"37.197.241.112","src_ip":"12.185.97.71","dst_port":56803,"src_port":34894},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2034, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2034, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259da890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894 SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcMac SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstMac SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_vlanID SIP-DIP N/A Tx 44621 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcIp SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstIp SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcPort SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstPort SIP-DIP N/A Tx 44621 Rx 44621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894 Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcMac Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstMac Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_vlanID Tx Frames: 44621, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcIp Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstIp Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_srcPort Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2034_vlan_ethtype_ip_dst_mac_02:93:ce:cb:70:33_src_mac_02:13:36:aa:2c:13_eth_type_ipv4_ip_proto_udp_dst_ip_37.197.241.112_src_ip_12.185.97.71_dst_port_56803_src_port_34894_unmatch_dstPort Tx Frames: 44621, Rx Frames: 44621, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2034,"vlan_ethtype":"ip","dst_mac":"02:93:ce:cb:70:33","src_mac":"02:13:36:aa:2c:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"37.197.241.112","src_ip":"12.185.97.71","dst_port":56803,"src_port":34894},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":189,"stats":{"bytes":11422976,"packets":44621,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11422976,"hw_packets":44621,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44621, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44621, packets = 44621, expected = 44621, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44621, hw_packets = 44621, expected = 44621, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:36:15 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":211,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:36:15 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:36:16 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=26, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=26, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] 192.73
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1270' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.2, port 49314 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:36:16 PM UTC INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2100 && bridge vlan add dev swp2 vid 2100 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp1 vid 2100 && bridge vlan add dev swp2 vid 2100 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6d:e6:f1:3b:53 dst_mac 02:79:cb:33:b6:09 vlan_id 2100 vlan_ethtype ip src_ip 96.108.144.152 dst_ip 38.121.200.92 ip_proto udp src_port 16914 dst_port 36811 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6d:e6:f1:3b:53 dst_mac 02:79:cb:33:b6:09 vlan_id 2100 vlan_ethtype ip src_ip 96.108.144.152 dst_ip 38.121.200.92 ip_proto udp src_port 16914 dst_port 36811 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2100,"vlan_ethtype":"ip","dst_mac":"02:79:cb:33:b6:09","src_mac":"02:6d:e6:f1:3b:53","eth_type":"ipv4","ip_proto":"udp","dst_ip":"38.121.200.92","src_ip":"96.108.144.152","dst_port":36811,"src_port":16914},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2100, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2100, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259666e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914 SIP-DIP N/A Tx 44240 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcMac SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstMac SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_vlanID SIP-DIP N/A Tx 44240 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcIp SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstIp SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcPort SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstPort SIP-DIP N/A Tx 44240 Rx 44240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914 Tx Frames: 44240, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcMac Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstMac Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_vlanID Tx Frames: 44240, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcIp Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstIp Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_srcPort Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2100_vlan_ethtype_ip_dst_mac_02:79:cb:33:b6:09_src_mac_02:6d:e6:f1:3b:53_eth_type_ipv4_ip_proto_udp_dst_ip_38.121.200.92_src_ip_96.108.144.152_dst_port_36811_src_port_16914_unmatch_dstPort Tx Frames: 44240, Rx Frames: 44240, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2100,"vlan_ethtype":"ip","dst_mac":"02:79:cb:33:b6:09","src_mac":"02:6d:e6:f1:3b:53","eth_type":"ipv4","ip_proto":"udp","dst_ip":"38.121.200.92","src_ip":"96.108.144.152","dst_port":36811,"src_port":16914},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":191,"stats":{"bytes":11325440,"packets":44240,"drops":44240,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11325440,"hw_packets":44240,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44240, drops = 44240, expected = 44240, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44240, packets = 44240, expected = 44240, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44240, hw_packets = 44240, expected = 44240, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:39:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":212,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:39:28 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:39:28 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=27, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=27, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] 195.42
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1341' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.2, port 33172 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:39:29 PM UTC INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2934 && bridge vlan add dev swp2 vid 2934 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp1 vid 2934 && bridge vlan add dev swp2 vid 2934 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:ec:3f:1b:b7:34 dst_mac 02:fd:89:26:2a:e6 vlan_id 2934 vlan_ethtype ip src_ip 102.143.213.178 dst_ip 90.135.40.120 ip_proto udp src_port 4979 dst_port 18988 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:ec:3f:1b:b7:34 dst_mac 02:fd:89:26:2a:e6 vlan_id 2934 vlan_ethtype ip src_ip 102.143.213.178 dst_ip 90.135.40.120 ip_proto udp src_port 4979 dst_port 18988 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2934,"vlan_ethtype":"ip","dst_mac":"02:fd:89:26:2a:e6","src_mac":"02:ec:3f:1b:b7:34","eth_type":"ipv4","ip_proto":"udp","dst_ip":"90.135.40.120","src_ip":"102.143.213.178","dst_port":18988,"src_port":4979},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2934, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2934, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a261018a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979 SIP-DIP N/A Tx 44678 Rx 17894 Loss 59.949 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcMac SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstMac SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_vlanID SIP-DIP N/A Tx 44678 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcIp SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstIp SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcPort SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstPort SIP-DIP N/A Tx 44678 Rx 44678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979 Tx Frames: 44678, Rx Frames: 17894, loss = 59.949, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcMac Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstMac Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_vlanID Tx Frames: 44678, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcIp Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstIp Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_srcPort Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2934_vlan_ethtype_ip_dst_mac_02:fd:89:26:2a:e6_src_mac_02:ec:3f:1b:b7:34_eth_type_ipv4_ip_proto_udp_dst_ip_90.135.40.120_src_ip_102.143.213.178_dst_port_18988_src_port_4979_unmatch_dstPort Tx Frames: 44678, Rx Frames: 44678, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2934,"vlan_ethtype":"ip","dst_mac":"02:fd:89:26:2a:e6","src_mac":"02:ec:3f:1b:b7:34","eth_type":"ipv4","ip_proto":"udp","dst_ip":"90.135.40.120","src_ip":"102.143.213.178","dst_port":18988,"src_port":4979},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":193,"stats":{"bytes":11437568,"packets":44678,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11437568,"hw_packets":44678,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44678, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44678, packets = 44678, expected = 44678, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44678, hw_packets = 44678, expected = 44678, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:42:43 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":213,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:42:43 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:42:44 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=28, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=28, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] 180.50
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1412' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.2, port 46820 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:42:44 PM UTC INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ee:ba:3b:b3:61 dst_mac 02:f8:e6:c1:29:5a src_ip 32.93.108.98 dst_ip 44.60.134.243 ip_proto udp src_port 10213 dst_port 41278 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ee:ba:3b:b3:61 dst_mac 02:f8:e6:c1:29:5a src_ip 32.93.108.98 dst_ip 44.60.134.243 ip_proto udp src_port 10213 dst_port 41278 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f8:e6:c1:29:5a","src_mac":"02:ee:ba:3b:b3:61","eth_type":"ipv4","ip_proto":"udp","dst_ip":"44.60.134.243","src_ip":"32.93.108.98","dst_port":41278,"src_port":10213},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259d9120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213 SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcMac SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstMac SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcIp SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstIp SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcPort SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstPort SIP-DIP N/A Tx 44232 Rx 44232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213 Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcMac Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstMac Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcIp Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstIp Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_srcPort Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f8:e6:c1:29:5a_src_mac_02:ee:ba:3b:b3:61_eth_type_ipv4_ip_proto_udp_dst_ip_44.60.134.243_src_ip_32.93.108.98_dst_port_41278_src_port_10213_unmatch_dstPort Tx Frames: 44232, Rx Frames: 44232, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f8:e6:c1:29:5a","src_mac":"02:ee:ba:3b:b3:61","eth_type":"ipv4","ip_proto":"udp","dst_ip":"44.60.134.243","src_ip":"32.93.108.98","dst_port":41278,"src_port":10213},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":11323392,"packets":44232,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11323392,"hw_packets":44232,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44232, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44232, packets = 44232, expected = 44232, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44232, hw_packets = 44232, expected = 44232, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:45:44 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":214,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:45:44 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:45:44 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=29, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=29, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] 178.39
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1481' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.2, port 56114 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:45:45 PM UTC INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:fc:15:53:e9:85 dst_mac 02:ac:6a:6e:c8:07 src_ip 74.168.143.144 dst_ip 32.228.31.236 ip_proto udp src_port 52342 dst_port 13459 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:fc:15:53:e9:85 dst_mac 02:ac:6a:6e:c8:07 src_ip 74.168.143.144 dst_ip 32.228.31.236 ip_proto udp src_port 52342 dst_port 13459 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ac:6a:6e:c8:07","src_mac":"02:fc:15:53:e9:85","eth_type":"ipv4","ip_proto":"udp","dst_ip":"32.228.31.236","src_ip":"74.168.143.144","dst_port":13459,"src_port":52342},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259d8fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342 SIP-DIP N/A Tx 44680 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcMac SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstMac SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcIp SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstIp SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcPort SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstPort SIP-DIP N/A Tx 44680 Rx 44680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342 Tx Frames: 44680, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcMac Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstMac Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcIp Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstIp Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_srcPort Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:6a:6e:c8:07_src_mac_02:fc:15:53:e9:85_eth_type_ipv4_ip_proto_udp_dst_ip_32.228.31.236_src_ip_74.168.143.144_dst_port_13459_src_port_52342_unmatch_dstPort Tx Frames: 44680, Rx Frames: 44680, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ac:6a:6e:c8:07","src_mac":"02:fc:15:53:e9:85","eth_type":"ipv4","ip_proto":"udp","dst_ip":"32.228.31.236","src_ip":"74.168.143.144","dst_port":13459,"src_port":52342},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":11438080,"packets":44680,"drops":44680,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11438080,"hw_packets":44680,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44680, drops = 44680, expected = 44680, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44680, packets = 44680, expected = 44680, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44680, hw_packets = 44680, expected = 44680, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:48:42 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":215,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:48:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:48:43 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=30, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=30, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] 179.41
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1550' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.2, port 41558 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:48:43 PM UTC INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:9c:53:68:68:c4 dst_mac 02:f9:25:17:3e:c3 src_ip 103.100.163.209 dst_ip 85.78.60.249 ip_proto udp src_port 65221 dst_port 35098 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:9c:53:68:68:c4 dst_mac 02:f9:25:17:3e:c3 src_ip 103.100.163.209 dst_ip 85.78.60.249 ip_proto udp src_port 65221 dst_port 35098 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f9:25:17:3e:c3","src_mac":"02:9c:53:68:68:c4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"85.78.60.249","src_ip":"103.100.163.209","dst_port":35098,"src_port":65221},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a01e10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221 SIP-DIP N/A Tx 44013 Rx 17604 Loss 60.003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcMac SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstMac SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcIp SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstIp SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcPort SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstPort SIP-DIP N/A Tx 44013 Rx 44013 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221 Tx Frames: 44013, Rx Frames: 17604, loss = 60.003, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcMac Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstMac Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcIp Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstIp Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_srcPort Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:f9:25:17:3e:c3_src_mac_02:9c:53:68:68:c4_eth_type_ipv4_ip_proto_udp_dst_ip_85.78.60.249_src_ip_103.100.163.209_dst_port_35098_src_port_65221_unmatch_dstPort Tx Frames: 44013, Rx Frames: 44013, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f9:25:17:3e:c3","src_mac":"02:9c:53:68:68:c4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"85.78.60.249","src_ip":"103.100.163.209","dst_port":35098,"src_port":65221},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":177,"stats":{"bytes":11267328,"packets":44013,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11267328,"hw_packets":44013,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44013, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44013, packets = 44013, expected = 44013, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44013, hw_packets = 44013, expected = 44013, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:51:41 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":216,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:51:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:51:42 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=31, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=31, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] 188.53
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1619' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.2, port 39440 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:51:43 PM UTC INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 325 && bridge vlan add dev swp2 vid 325 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp1 vid 325 && bridge vlan add dev swp2 vid 325 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:ed:c4:2d:81:22 dst_mac 02:ec:fa:80:75:8a vlan_id 325 vlan_ethtype ip src_ip 30.180.238.235 dst_ip 68.152.52.117 ip_proto udp src_port 57956 dst_port 45054 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:ed:c4:2d:81:22 dst_mac 02:ec:fa:80:75:8a vlan_id 325 vlan_ethtype ip src_ip 30.180.238.235 dst_ip 68.152.52.117 ip_proto udp src_port 57956 dst_port 45054 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":325,"vlan_ethtype":"ip","dst_mac":"02:ec:fa:80:75:8a","src_mac":"02:ed:c4:2d:81:22","eth_type":"ipv4","ip_proto":"udp","dst_ip":"68.152.52.117","src_ip":"30.180.238.235","dst_port":45054,"src_port":57956},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 325, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 325, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a00e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956 SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcMac SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstMac SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_vlanID SIP-DIP N/A Tx 44265 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcIp SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstIp SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcPort SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstPort SIP-DIP N/A Tx 44265 Rx 44265 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956 Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcMac Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstMac Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_vlanID Tx Frames: 44265, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcIp Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstIp Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_srcPort Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_325_vlan_ethtype_ip_dst_mac_02:ec:fa:80:75:8a_src_mac_02:ed:c4:2d:81:22_eth_type_ipv4_ip_proto_udp_dst_ip_68.152.52.117_src_ip_30.180.238.235_dst_port_45054_src_port_57956_unmatch_dstPort Tx Frames: 44265, Rx Frames: 44265, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":325,"vlan_ethtype":"ip","dst_mac":"02:ec:fa:80:75:8a","src_mac":"02:ed:c4:2d:81:22","eth_type":"ipv4","ip_proto":"udp","dst_ip":"68.152.52.117","src_ip":"30.180.238.235","dst_port":45054,"src_port":57956},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":186,"stats":{"bytes":11331840,"packets":44265,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11331840,"hw_packets":44265,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44265, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44265, packets = 44265, expected = 44265, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44265, hw_packets = 44265, expected = 44265, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:54:50 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":217,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:54:50 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:54:51 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=32, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=32, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] 187.52
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1690' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.2, port 52332 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:54:51 PM UTC INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2509 && bridge vlan add dev swp2 vid 2509 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp1 vid 2509 && bridge vlan add dev swp2 vid 2509 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:34:d1:f8:b9:54 dst_mac 02:89:0f:29:4d:21 vlan_id 2509 vlan_ethtype ip src_ip 76.79.123.125 dst_ip 19.226.36.57 ip_proto udp src_port 62700 dst_port 57070 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:34:d1:f8:b9:54 dst_mac 02:89:0f:29:4d:21 vlan_id 2509 vlan_ethtype ip src_ip 76.79.123.125 dst_ip 19.226.36.57 ip_proto udp src_port 62700 dst_port 57070 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2509,"vlan_ethtype":"ip","dst_mac":"02:89:0f:29:4d:21","src_mac":"02:34:d1:f8:b9:54","eth_type":"ipv4","ip_proto":"udp","dst_ip":"19.226.36.57","src_ip":"76.79.123.125","dst_port":57070,"src_port":62700},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2509, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2509, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25965600>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700 SIP-DIP N/A Tx 45645 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcMac SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstMac SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_vlanID SIP-DIP N/A Tx 45645 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcIp SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstIp SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcPort SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstPort SIP-DIP N/A Tx 45645 Rx 45645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700 Tx Frames: 45645, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcMac Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstMac Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_vlanID Tx Frames: 45645, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcIp Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstIp Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_srcPort Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2509_vlan_ethtype_ip_dst_mac_02:89:0f:29:4d:21_src_mac_02:34:d1:f8:b9:54_eth_type_ipv4_ip_proto_udp_dst_ip_19.226.36.57_src_ip_76.79.123.125_dst_port_57070_src_port_62700_unmatch_dstPort Tx Frames: 45645, Rx Frames: 45645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2509,"vlan_ethtype":"ip","dst_mac":"02:89:0f:29:4d:21","src_mac":"02:34:d1:f8:b9:54","eth_type":"ipv4","ip_proto":"udp","dst_ip":"19.226.36.57","src_ip":"76.79.123.125","dst_port":57070,"src_port":62700},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":185,"stats":{"bytes":11685120,"packets":45645,"drops":45645,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11685120,"hw_packets":45645,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 45645, drops = 45645, expected = 45645, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 45645, packets = 45645, expected = 45645, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 45645, hw_packets = 45645, expected = 45645, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:57:58 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":218,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:57:58 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:57:58 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=33, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=33, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] 186.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1761' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.2, port 49592 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 04:57:59 PM UTC INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 4079 && bridge vlan add dev swp2 vid 4079 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp1 vid 4079 && bridge vlan add dev swp2 vid 4079 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:b5:19:c5:f6:73 dst_mac 02:d4:27:bd:55:29 vlan_id 4079 vlan_ethtype ip src_ip 112.121.35.247 dst_ip 63.110.20.148 ip_proto udp src_port 50977 dst_port 50526 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:b5:19:c5:f6:73 dst_mac 02:d4:27:bd:55:29 vlan_id 4079 vlan_ethtype ip src_ip 112.121.35.247 dst_ip 63.110.20.148 ip_proto udp src_port 50977 dst_port 50526 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":4079,"vlan_ethtype":"ip","dst_mac":"02:d4:27:bd:55:29","src_mac":"02:b5:19:c5:f6:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"63.110.20.148","src_ip":"112.121.35.247","dst_port":50526,"src_port":50977},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 4079, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 4079, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25966fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977 SIP-DIP N/A Tx 44157 Rx 17673 Loss 59.977 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcMac SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstMac SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_vlanID SIP-DIP N/A Tx 44157 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcIp SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstIp SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcPort SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstPort SIP-DIP N/A Tx 44157 Rx 44157 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977 Tx Frames: 44157, Rx Frames: 17673, loss = 59.977, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcMac Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstMac Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_vlanID Tx Frames: 44157, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcIp Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstIp Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_srcPort Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_4079_vlan_ethtype_ip_dst_mac_02:d4:27:bd:55:29_src_mac_02:b5:19:c5:f6:73_eth_type_ipv4_ip_proto_udp_dst_ip_63.110.20.148_src_ip_112.121.35.247_dst_port_50526_src_port_50977_unmatch_dstPort Tx Frames: 44157, Rx Frames: 44157, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":4079,"vlan_ethtype":"ip","dst_mac":"02:d4:27:bd:55:29","src_mac":"02:b5:19:c5:f6:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"63.110.20.148","src_ip":"112.121.35.247","dst_port":50526,"src_port":50977},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":11304192,"packets":44157,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11304192,"hw_packets":44157,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44157, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44157, packets = 44157, expected = 44157, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44157, hw_packets = 44157, expected = 44157, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:01:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":219,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:01:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:01:04 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=34, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=34, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] 176.86
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1832' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.2, port 38650 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:01:05 PM UTC INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a3:96:08:da:89 dst_mac 02:93:6a:71:9d:64 src_ip 55.247.155.123 dst_ip 55.146.248.59 ip_proto udp src_port 61 dst_port 97 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a3:96:08:da:89 dst_mac 02:93:6a:71:9d:64 src_ip 55.247.155.123 dst_ip 55.146.248.59 ip_proto udp src_port 61 dst_port 97 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:93:6a:71:9d:64","src_mac":"02:a3:96:08:da:89","eth_type":"ipv4","ip_proto":"udp","dst_ip":"55.146.248.59","src_ip":"55.247.155.123","dst_port":97,"src_port":61},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a031c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61 SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcMac SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstMac SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcIp SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstIp SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcPort SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstPort SIP-DIP N/A Tx 44352 Rx 44352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61 Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcMac Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstMac Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcIp Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstIp Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_srcPort Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:93:6a:71:9d:64_src_mac_02:a3:96:08:da:89_eth_type_ipv4_ip_proto_udp_dst_ip_55.146.248.59_src_ip_55.247.155.123_dst_port_97_src_port_61_unmatch_dstPort Tx Frames: 44352, Rx Frames: 44352, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:93:6a:71:9d:64","src_mac":"02:a3:96:08:da:89","eth_type":"ipv4","ip_proto":"udp","dst_ip":"55.146.248.59","src_ip":"55.247.155.123","dst_port":97,"src_port":61},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":175,"stats":{"bytes":11354112,"packets":44352,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11354112,"hw_packets":44352,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44352, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44352, packets = 44352, expected = 44352, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'pass', Tx Frames = 44352, hw_packets = 44352, expected = 44352, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:04:00 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":220,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:04:01 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:04:01 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=35, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=35, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] 176.65
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1901' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.2, port 34324 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:04:02 PM UTC INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:22:4b:60:1a:be dst_mac 02:e4:33:2e:4e:25 src_ip 115.121.143.8 dst_ip 113.160.47.63 ip_proto udp src_port 53406 dst_port 28013 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:22:4b:60:1a:be dst_mac 02:e4:33:2e:4e:25 src_ip 115.121.143.8 dst_ip 113.160.47.63 ip_proto udp src_port 53406 dst_port 28013 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e4:33:2e:4e:25","src_mac":"02:22:4b:60:1a:be","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.160.47.63","src_ip":"115.121.143.8","dst_port":28013,"src_port":53406},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a03400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406 SIP-DIP N/A Tx 44169 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcMac SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstMac SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcIp SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstIp SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcPort SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstPort SIP-DIP N/A Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406 Tx Frames: 44169, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcMac Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstMac Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcIp Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstIp Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_srcPort Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e4:33:2e:4e:25_src_mac_02:22:4b:60:1a:be_eth_type_ipv4_ip_proto_udp_dst_ip_113.160.47.63_src_ip_115.121.143.8_dst_port_28013_src_port_53406_unmatch_dstPort Tx Frames: 44169, Rx Frames: 44169, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e4:33:2e:4e:25","src_mac":"02:22:4b:60:1a:be","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.160.47.63","src_ip":"115.121.143.8","dst_port":28013,"src_port":53406},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":175,"stats":{"bytes":11307264,"packets":44169,"drops":44169,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11307264,"hw_packets":44169,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44169, drops = 44169, expected = 44169, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44169, packets = 44169, expected = 44169, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'drop', Tx Frames = 44169, hw_packets = 44169, expected = 44169, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:06:57 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":221,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:06:57 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:06:58 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=36, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=36, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] 178.31
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1970' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.2, port 59800 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:06:58 PM UTC INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:59:1f:3e:9b:1d dst_mac 02:66:3b:05:b8:b3 src_ip 15.47.81.128 dst_ip 101.222.34.103 ip_proto udp src_port 14761 dst_port 22577 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:59:1f:3e:9b:1d dst_mac 02:66:3b:05:b8:b3 src_ip 15.47.81.128 dst_ip 101.222.34.103 ip_proto udp src_port 14761 dst_port 22577 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:66:3b:05:b8:b3","src_mac":"02:59:1f:3e:9b:1d","eth_type":"ipv4","ip_proto":"udp","dst_ip":"101.222.34.103","src_ip":"15.47.81.128","dst_port":22577,"src_port":14761},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b3730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761 SIP-DIP N/A Tx 44205 Rx 17704 Loss 59.950 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcMac SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstMac SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcIp SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstIp SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcPort SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstPort SIP-DIP N/A Tx 44205 Rx 44205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761 Tx Frames: 44205, Rx Frames: 17704, loss = 59.95, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcMac Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstMac Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcIp Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstIp Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_srcPort Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:66:3b:05:b8:b3_src_mac_02:59:1f:3e:9b:1d_eth_type_ipv4_ip_proto_udp_dst_ip_101.222.34.103_src_ip_15.47.81.128_dst_port_22577_src_port_14761_unmatch_dstPort Tx Frames: 44205, Rx Frames: 44205, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:66:3b:05:b8:b3","src_mac":"02:59:1f:3e:9b:1d","eth_type":"ipv4","ip_proto":"udp","dst_ip":"101.222.34.103","src_ip":"15.47.81.128","dst_port":22577,"src_port":14761},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":11316480,"packets":44205,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11316480,"hw_packets":44205,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44205, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44205, packets = 44205, expected = 44205, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 2] Rule action = 'trap', Tx Frames = 44205, hw_packets = 44205, expected = 44205, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:55 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":222,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:56 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=37, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=37, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc 0.84
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2037' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.2, port 59548 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:57 PM UTC INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG agg2:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:57 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=38, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=42] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=38, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up 208.06
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2088' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.2, port 59552 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:09:58 PM UTC INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0f9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI bridge_2 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI bridge_3 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI bridge_4 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0ed70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:13:22 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:13:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":223,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh 300.36
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2122' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.2, port 57178 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:13:26 PM UTC INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a02950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI bridge SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8f:74:62","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b2530>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI bridge SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8f:74:62","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a00ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI bridge SIP-DIP N/A Tx 3631 Rx 3631 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8f:74:62","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":224,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue 203.88
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2156' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.2, port 58956 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:18:26 PM UTC INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0f640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:31:9b:5b","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:21:49 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:21:49 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":225,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif 230.36
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2187' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.2, port 46442 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:21:50 PM UTC INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg2... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a00820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI BridgedLLDP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI LACPDU SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4ToMe SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Request_BC SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Reply SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Broadcast SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_SSH SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_Telnet SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_ICMP_Request SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DCHP_BC SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Reserved_MC SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_OSPFIGP SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_VRRP SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_IGMP SIP-DIP N/A Tx 443 Rx 443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_BGP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG agg2:Logger.py:156 17:25:23.201199 LLDP, length 219: localhost 17:25:25.303576 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 LLDP, length 82 [|LLDP] 17:25:25.303577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.303727 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:25.303577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.303577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0345 c8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.303577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.303577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.303577 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.303577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.303577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.303577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.303577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.303577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.304031 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:25.313551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 LLDP, length 82 [|LLDP] 17:25:25.313551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.313551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.313551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.313551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.313551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.313551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.313552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034d 6a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.313552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.313552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.313552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.313552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.323546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 LLDP, length 82 [|LLDP] 17:25:25.323546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.323546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.323546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0355 0b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.323546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.323546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.323546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.323546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.323546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.323546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.323547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.333545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.333545 LLDP, length 82 [|LLDP] 17:25:25.333545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.333546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.333546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035c ac56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.333546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.333546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.333546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.333546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.333546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.333546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.333546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.333546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.333546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.333546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.343542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 LLDP, length 82 [|LLDP] 17:25:25.343543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.343543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.343543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.343543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.343543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.343543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0364 4d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.343543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.343543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.353558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.353558 LLDP, length 82 [|LLDP] 17:25:25.353558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.353558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.353558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036b ee96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.353559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.353559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.353559 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.353559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.353559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.353559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.353559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.353559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.353559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.353559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.363542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.363542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.363542 LLDP, length 82 [|LLDP] 17:25:25.363542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.363542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.363542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0373 8fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.363542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.363543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.363543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.363543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.363543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.363543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.363543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.373547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.373547 LLDP, length 82 [|LLDP] 17:25:25.373547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.373547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.373547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037b 30d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.373547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.373547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.373547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.373547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.373548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.373548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.373548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.373548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.373548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.373548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.383544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 LLDP, length 82 [|LLDP] 17:25:25.383544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.383544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.383544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0382 d1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.383544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.383544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.383544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.383544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.383544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.383545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.383545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.393551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.393551 LLDP, length 82 [|LLDP] 17:25:25.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.393551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.393552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.393552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.393552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038a 7316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.393552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.393552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.403560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 LLDP, length 82 [|LLDP] 17:25:25.403560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.403560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.403560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0392 1436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.403560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.403560 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.403560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.403560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.403560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.403560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.403560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.403561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 LLDP, length 82 [|LLDP] 17:25:25.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0399 b556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.413545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.413545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.413545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.423547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.423547 LLDP, length 82 [|LLDP] 17:25:25.423548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.423548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.423548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.423548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.423548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.423548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.423548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.423548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a1 5676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.423548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.423548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.423548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.423548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.423548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.433552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.433552 LLDP, length 82 [|LLDP] 17:25:25.433552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.433553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.433553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a8 f796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.433553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.433553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.433553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.433553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.433553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.433553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.433553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.443542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.443542 LLDP, length 82 [|LLDP] 17:25:25.443542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.443542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.443542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b0 98b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.443542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.443542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.443542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.443542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.443543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.443543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.443543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.443543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.443543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.443543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.453541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 LLDP, length 82 [|LLDP] 17:25:25.453541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.453541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.453541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b8 39d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.453541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.453541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.453541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.453541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.453541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.453542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.453542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.453542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.463541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 LLDP, length 82 [|LLDP] 17:25:25.463541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.463541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.463541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bf daf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.463541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.463541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.463541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.463541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.463541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.463541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.463542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.473555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 LLDP, length 82 [|LLDP] 17:25:25.473555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.473555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.473555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.473555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.473555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.473556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c7 7c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.473556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.473556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.473556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.473556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.473556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.483541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 LLDP, length 82 [|LLDP] 17:25:25.483542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.483542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.483542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cf 1d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.483542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.483542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.483542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.483542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.483542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.483542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.483542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.483542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.493537 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.493537 LLDP, length 82 [|LLDP] 17:25:25.493537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.493537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.493538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d6 be56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.493538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.493538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.493538 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.493538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.493538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.493538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.493538 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.493538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.493538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.503539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.503539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.503539 LLDP, length 82 [|LLDP] 17:25:25.503539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.503540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.503540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.503540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.503540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.503540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.503540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.503540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03de 5f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.503540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.503540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.503540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.513541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.513541 LLDP, length 82 [|LLDP] 17:25:25.513541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.513541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.513541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e6 0096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.513541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.513541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.513546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.513546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.513546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.513546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.523540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 LLDP, length 82 [|LLDP] 17:25:25.523540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.523540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.523540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.523541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.523541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ed a1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.523541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.523541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.523541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.523541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.523541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.523541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.533543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 LLDP, length 82 [|LLDP] 17:25:25.533543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.533543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.533543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f5 42d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.533543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.533543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.533543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.533543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.533543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.533543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.533544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.533544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.543549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 LLDP, length 82 [|LLDP] 17:25:25.543549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.543549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.543549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fc e3f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.543549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.543549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.543549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.543550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.543550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.543550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.553548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 LLDP, length 82 [|LLDP] 17:25:25.553548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.553548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.553548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.553548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.553548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0404 8516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.553548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.553548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.553549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.553549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.553549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.553549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.563542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.563542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.563542 LLDP, length 82 [|LLDP] 17:25:25.563542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.563542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.563542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040c 2636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.563543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.563543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.563543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.563543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.563543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.563543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.563543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.563543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.563543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.573540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 LLDP, length 82 [|LLDP] 17:25:25.573541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.573541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.573541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0413 c756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.573541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.573541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.573541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.573541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.573541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.573541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.573541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.573541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.583540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.583540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.583541 LLDP, length 82 [|LLDP] 17:25:25.583541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.583541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.583541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041b 6876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.583541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.583541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.583541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.583541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.583541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.583541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.583541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.593544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.593544 LLDP, length 82 [|LLDP] 17:25:25.593544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0423 0996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.593550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.593550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.593550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.593550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.593550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.593550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.593550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.593550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.593550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.593550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.603539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 LLDP, length 82 [|LLDP] 17:25:25.603539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.603539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.603539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.603539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.603539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042a aab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.603540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.603540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.603540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.603540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.603540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.603540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.613563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 LLDP, length 82 [|LLDP] 17:25:25.613564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.613564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.613564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0432 4bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.613564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.613564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.613564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.613564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.613564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.613564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.613564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.613565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.623541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 LLDP, length 82 [|LLDP] 17:25:25.623541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.623541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.623541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0439 ecf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.623541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.623541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.623541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.623541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.623541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.623542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.623542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.633542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 LLDP, length 82 [|LLDP] 17:25:25.633542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.633542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.633542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.633542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.633542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0441 8e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.633542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.633543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.633543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.633543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.633543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.633543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.643573 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.643573 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.643574 LLDP, length 82 [|LLDP] 17:25:25.643574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.643574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.643574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0449 2f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.643574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.643574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.643574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.643574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.643574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.643574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.643574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.643574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.643574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.653577 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.653577 LLDP, length 82 [|LLDP] 17:25:25.653577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.653577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.653577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0450 d056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.653577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.653577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.653578 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.653578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.653578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.653578 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.653578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.653578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.653578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.653578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.663572 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 LLDP, length 82 [|LLDP] 17:25:25.663572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.663572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.663572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0458 7176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.663572 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.663573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.663573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.663573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.663573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.663573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.663573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.663573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.673555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.673555 LLDP, length 82 [|LLDP] 17:25:25.673555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.673555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.673555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0460 1296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.673555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.673555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.673555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.673556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.673556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.673556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.673556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.673556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.673556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.673556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.683551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 LLDP, length 82 [|LLDP] 17:25:25.683551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.683551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.683551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.683551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.683551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0467 b3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.683551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.683552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.683552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.683552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.683552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.683552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.693551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.693551 LLDP, length 82 [|LLDP] 17:25:25.693551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.693551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.693551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046f 54d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.693551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.693551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.693551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.693551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.693552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.693552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.693552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.693552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.693552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.693552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.703545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.703545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.703545 LLDP, length 82 [|LLDP] 17:25:25.703545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.703545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.703545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0476 f5f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.703545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.703545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.703546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.713561 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.713561 LLDP, length 82 [|LLDP] 17:25:25.713561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.713561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.713561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.713561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.713561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.713562 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.713562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047e 9716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.713562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.713562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.713562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.713562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.713562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.713562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.723555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.723555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.723555 LLDP, length 82 [|LLDP] 17:25:25.723555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.723555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.723556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0486 3836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.723556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.723556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.723556 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.723556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.723556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.723556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.723556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.723556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.723556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.733547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 LLDP, length 82 [|LLDP] 17:25:25.733547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.733547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.733547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048d d956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.733547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.733547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.733547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.733547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.733547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.733547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.733547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.733548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.743550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.743550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.743551 LLDP, length 82 [|LLDP] 17:25:25.743551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.743551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.743551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0495 7a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.743551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.743551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.743551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.743551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.743551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.743551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.743551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.743551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.743551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.753552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 LLDP, length 82 [|LLDP] 17:25:25.753552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.753552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.753552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049d 1b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.753552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.753552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.753552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.753552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.753552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.753553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.753553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.753553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.763543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 LLDP, length 82 [|LLDP] 17:25:25.763543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.763543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.763543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.763543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a4 bcb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.763543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.763543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.763543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.763543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.763544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.773551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 LLDP, length 82 [|LLDP] 17:25:25.773551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.773551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.773551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ac 5dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.773551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.773551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.773551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.773551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.773551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.773552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.773552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.773552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.783545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.783545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.783545 LLDP, length 82 [|LLDP] 17:25:25.783545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.783545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.783545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b3 fef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.783545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.783545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.783545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.783546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.783546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.783546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.783546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.793549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 LLDP, length 82 [|LLDP] 17:25:25.793549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.793549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.793549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.793549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bb a016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.793549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.793549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.793549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.793550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.803553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.803553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.803553 LLDP, length 82 [|LLDP] 17:25:25.803554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.803554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.803554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c3 4136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.803554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.803554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.803554 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.803554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.803554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.803554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.803554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.803554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.803554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.813584 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.813584 LLDP, length 82 [|LLDP] 17:25:25.813584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.813584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.813585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ca e256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.813585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.813585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.813585 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.813585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.813585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.813585 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.813585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.813585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.813585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.813585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.823558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 LLDP, length 82 [|LLDP] 17:25:25.823559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.823559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.823559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d2 8376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.823559 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.823559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.823559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.823559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.823559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.823559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.823559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.823559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.833546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.833546 LLDP, length 82 [|LLDP] 17:25:25.833546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.833547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.833547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04da 2496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.833547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.833547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.833547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.833547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.833547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.833547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.833547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.833547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.833547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.833547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.843542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 LLDP, length 82 [|LLDP] 17:25:25.843543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.843543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.843543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.843543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.843543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e1 c5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.843543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.843543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.843543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.843543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.843543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.843543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.853544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 LLDP, length 82 [|LLDP] 17:25:25.853545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.853545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.853545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e9 66d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.853545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.853545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.853545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.853545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.853545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.853545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.853545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.853545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.863545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 LLDP, length 82 [|LLDP] 17:25:25.863545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.863545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.863545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f1 07f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.863545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.863545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.863545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.863545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.863545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.863545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.863545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.863546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.873550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 LLDP, length 82 [|LLDP] 17:25:25.873550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.873550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.873550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.873550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.873550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f8 a916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.873550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.873550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.873550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.873550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.873550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.873551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.883544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.883544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.883544 LLDP, length 82 [|LLDP] 17:25:25.883544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.883544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.883545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0500 4a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.883545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.883545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.883545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.883545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.883545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.883545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.883545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.883545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.883545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.893551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.893551 LLDP, length 82 [|LLDP] 17:25:25.893551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.893551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.893551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0507 eb56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.893551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.893551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.893551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.893551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.893551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.893551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.893552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.893552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.893552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.893552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.903544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.903544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.903544 LLDP, length 82 [|LLDP] 17:25:25.903544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.903544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.903544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050f 8c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.903544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.903545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.903545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.903545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.903545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.903545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.903545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.903545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.903545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.913544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.913544 LLDP, length 82 [|LLDP] 17:25:25.913544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.913544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.913544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0517 2d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.913544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.913544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.913544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.913544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.913544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.913549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.913549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.913550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.913550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.913550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.923542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.923542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.923543 LLDP, length 82 [|LLDP] 17:25:25.923543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.923543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.923543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.923543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.923543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051e ceb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.923543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.923543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.923543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.923543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.923543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.933545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 LLDP, length 82 [|LLDP] 17:25:25.933546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.933546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.933546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0526 6fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.933546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.933546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.933546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.933546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.933546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.933546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.933546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.933546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.943548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 LLDP, length 82 [|LLDP] 17:25:25.943548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.943548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.943548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052e 10f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.943548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.943548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.943548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.943548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.943548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.943548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.943548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.943549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.953545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.953545 LLDP, length 82 [|LLDP] 17:25:25.953545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.953545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.953545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.953545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.953545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.953546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.953546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0535 b216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.953546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.953546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.953546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.953546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.953546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.953546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.963542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.963542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.963542 LLDP, length 82 [|LLDP] 17:25:25.963542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.963542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.963542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053d 5336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.963543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.963543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.963543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.963543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.963543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.963543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.963543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.973549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.973549 LLDP, length 82 [|LLDP] 17:25:25.973549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.973549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.973549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0544 f456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.973549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.973549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.973549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.973549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.973549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.973550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.973550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.973550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.973550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.973550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.983540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 LLDP, length 82 [|LLDP] 17:25:25.983540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.983540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.983540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054c 9576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.983540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.983540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.983540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.983540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.983541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.983541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.983541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.983541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.993550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 LLDP, length 82 [|LLDP] 17:25:25.993550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.993550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.993550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0554 3696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.993550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.993550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.993550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.993550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.993550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.993550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.993551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.993551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.003538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 LLDP, length 82 [|LLDP] 17:25:26.003538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.003538 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.003538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.003538 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.003538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055b d7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.003538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.003538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.003538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.003538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.003539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.003539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.013544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.013544 LLDP, length 82 [|LLDP] 17:25:26.013544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.013544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.013544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0563 78d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.013544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.013544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.013545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.013545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.013545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.013545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.023543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 LLDP, length 82 [|LLDP] 17:25:26.023544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.023544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.023544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056b 19f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.023544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.023544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.023544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.023544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.023544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.023544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.033549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.033549 LLDP, length 82 [|LLDP] 17:25:26.033549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.033549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.033550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.033550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.033550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.033550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.033550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0572 bb16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.033550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.033550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.033550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.033550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.033550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.033550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.043543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.043543 LLDP, length 82 [|LLDP] 17:25:26.043543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.043543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.043543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057a 5c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.043543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.043543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.043544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.043544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.043544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.043544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.043544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.043544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.043544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.043544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.053541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.053541 LLDP, length 82 [|LLDP] 17:25:26.053541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.053542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.053542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0581 fd56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.053542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.053542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.053542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.053542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.053542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.053542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.053542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.053542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.053542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.053542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.063541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 LLDP, length 82 [|LLDP] 17:25:26.063541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.063541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.063541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0589 9e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.063541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.063541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.063541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.063541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.063541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.063541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.063542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.063542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.073544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 LLDP, length 82 [|LLDP] 17:25:26.073544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.073544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.073544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0591 3f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.073544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.073544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.073544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.073544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.073544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.073544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.073545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.073545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.083542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 LLDP, length 82 [|LLDP] 17:25:26.083542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.083542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.083542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.083542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.083542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0598 e0b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.083542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.083542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.083542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.083542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.083542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.083543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.093563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 LLDP, length 82 [|LLDP] 17:25:26.093563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.093563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.093563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a0 81d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.093563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.093563 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.093563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.093563 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.093563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.093563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.093563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.093564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.103544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.103544 LLDP, length 82 [|LLDP] 17:25:26.103544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.103544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.103544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a8 22f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.103544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.103544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.103544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.103544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.103544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.103545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.103545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.103545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.103545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.113548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 LLDP, length 82 [|LLDP] 17:25:26.113548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.113548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.113548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.113548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.113548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05af c416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.113548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.113549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.113549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.113549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.113549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.113549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.123545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 LLDP, length 82 [|LLDP] 17:25:26.123545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.123545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.123545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b7 6536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.123545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.123545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.123545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.123545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.123545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.123546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.123546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.123546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.133543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 LLDP, length 82 [|LLDP] 17:25:26.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bf 0656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.133544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.133544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.133544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.143541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 LLDP, length 82 [|LLDP] 17:25:26.143541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.143541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.143541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c6 a776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.143541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.143542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.143542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.143542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.143542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.143542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.143542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.143542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.153540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.153540 LLDP, length 82 [|LLDP] 17:25:26.153540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.153540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.153540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ce 4896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.153541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.153541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.153541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.153541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.153541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.153541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.153541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.153541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.153541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.153541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.163541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 LLDP, length 82 [|LLDP] 17:25:26.163541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.163541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.163541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.163541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.163541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d5 e9b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.163541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.163542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.163542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.163542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.163542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.173550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.173550 LLDP, length 82 [|LLDP] 17:25:26.173550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.173550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.173550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dd 8ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.173550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.173550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.173551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.173551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.173551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.173551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.173551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.173551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.173551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.173551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.183543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.183543 LLDP, length 82 [|LLDP] 17:25:26.183544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.183544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.183544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e5 2bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.183544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.183544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.183544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.183544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.183544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.183544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.183544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.183544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.183544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.193547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 LLDP, length 82 [|LLDP] 17:25:26.193548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.193548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.193548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.193548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.193548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ec cd16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.193548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.193548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.193548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.193548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.193548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.193548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.203543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.203543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.203543 LLDP, length 82 [|LLDP] 17:25:26.203543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.203543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.203544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f4 6e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.203544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.203544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.203544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.203544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.203544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.203544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.203544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.203544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.203544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.213541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.213541 LLDP, length 82 [|LLDP] 17:25:26.213541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.213541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.213541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fc 0f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.213541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.213541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.213541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.213541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.213541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.213542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.213542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.213542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.213542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.213542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.223545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.223545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.223545 LLDP, length 82 [|LLDP] 17:25:26.223545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.223545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.223545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0603 b076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.223546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.223546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.223546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.223546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.223546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.223546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.223546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.223546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.223546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.233547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.233547 LLDP, length 82 [|LLDP] 17:25:26.233547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.233547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.233547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060b 5196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.233547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.233548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.233548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.233548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.233548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.233548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.233548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.233548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.233548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.233548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.243542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.243542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.243543 LLDP, length 82 [|LLDP] 17:25:26.243543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.243543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.243543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.243543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.243543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.243543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0612 f2b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.243543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.243543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.243543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.243543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.243543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.243543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.253541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.253541 LLDP, length 82 [|LLDP] 17:25:26.253541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.253541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.253541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061a 93d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.253542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.253542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.253542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.253542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.253542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.253542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.253542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.253542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.253542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.253542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.263539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.263539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.263539 LLDP, length 82 [|LLDP] 17:25:26.263539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.263539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.263539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0622 34f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.263539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.263540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.263540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.263540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.263540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.263540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.263540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.263540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.263540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.273541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 LLDP, length 82 [|LLDP] 17:25:26.273541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.273541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.273541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.273541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.273541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0629 d616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.273541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.273541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.273541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.273541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.273541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.273542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.283543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 LLDP, length 82 [|LLDP] 17:25:26.283544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.283544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.283544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0631 7736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.283544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.283544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.283544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.283544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.283544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.283544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.283544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.283544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.293546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.293546 LLDP, length 82 [|LLDP] 17:25:26.293546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.293546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.293546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0639 1856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.293546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.293547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.293547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.293547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.293547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.293547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.293547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.293547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.293547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.293547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.303542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 LLDP, length 82 [|LLDP] 17:25:26.303542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.303542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.303542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0640 b976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.303542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.303542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.303542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.303542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.303542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.303542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.303542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.303543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.313547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.313547 LLDP, length 82 [|LLDP] 17:25:26.313547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.313547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.313547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0648 5a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.313547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.313547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.313547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.313547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.313547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.313548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.313548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.313548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.313548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.323543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 LLDP, length 82 [|LLDP] 17:25:26.323543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.323543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.323543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.323543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.323543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064f fbb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.323543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.323543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.323543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.323543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.323543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.323544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.325140 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:26.325237 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:26.333549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.333549 LLDP, length 82 [|LLDP] 17:25:26.333549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.333549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.333549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0657 9cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.333550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.333550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.333550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.333550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.333550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.333550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.333550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.333550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.343548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.343548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.343548 LLDP, length 82 [|LLDP] 17:25:26.343548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.343548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.343548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065f 3df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.343548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.343548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.343548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.343549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.343549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.343549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.343549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.343549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.343549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.353542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 LLDP, length 82 [|LLDP] 17:25:26.353542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.353542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.353542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.353542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.353542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.353542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0666 df16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.353542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.353542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.353542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.353543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.353543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.363544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.363544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.363544 LLDP, length 82 [|LLDP] 17:25:26.363544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.363544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.363544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066e 8036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.363544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.363545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.363545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.363545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.363545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.363545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.363545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.363545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.363545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.373542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 LLDP, length 82 [|LLDP] 17:25:26.373543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.373543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.373543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0676 2156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.373543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.373543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.373543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.373543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.373543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.373543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.373543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.373543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.383542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.383542 LLDP, length 82 [|LLDP] 17:25:26.383542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.383542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.383543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067d c276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.383543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.383543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.383543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.383543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.383543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.383543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.383543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.393545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.393545 LLDP, length 82 [|LLDP] 17:25:26.393545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.393545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.393545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0685 6396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.393545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.393545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.393545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.393545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.393546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.393546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.393546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.393546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.393546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.393546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.403543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.403543 LLDP, length 82 [|LLDP] 17:25:26.403543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.403543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.403543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.403544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.403544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.403544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068d 04b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.403544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.403544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.413543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.413543 LLDP, length 82 [|LLDP] 17:25:26.413543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.413549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.413549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0694 a5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.413549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.413549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.413549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.413549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.413549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.413549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.413549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.413549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.413549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.413549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.423543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.423543 LLDP, length 82 [|LLDP] 17:25:26.423543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.423543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.423543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069c 46f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.423544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.423544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.423544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.423544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.423544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.423544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.423544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.433550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 LLDP, length 82 [|LLDP] 17:25:26.433550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.433550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.433550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.433550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.433550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.433550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a3 e816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.433550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.433551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.443541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.443541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.443541 LLDP, length 82 [|LLDP] 17:25:26.443541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.443542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.443542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ab 8936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.443542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.443542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.443542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.443542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.443542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.443542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.443542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.443542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.443542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.453542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.453542 LLDP, length 82 [|LLDP] 17:25:26.453542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.453542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.453542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b3 2a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.453543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.453543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.453543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.453543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.453543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.453543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.453543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.453543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.463540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.463540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.463540 LLDP, length 82 [|LLDP] 17:25:26.463540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.463540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.463540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ba cb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.463540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.463541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.463541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.463541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.473558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.473558 LLDP, length 82 [|LLDP] 17:25:26.473558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.473558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.473558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c2 6c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.473558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.473558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.473558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.473558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.473559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.473559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.473559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.473559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.473559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.473559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.483547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 LLDP, length 82 [|LLDP] 17:25:26.483547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.483547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.483547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.483547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.483547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.483548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ca 0db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.483548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.483548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.493550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.493550 LLDP, length 82 [|LLDP] 17:25:26.493551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.493551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.493551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d1 aed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.493551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.493551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.493551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.493551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.493551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.493551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.493551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.493551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.493551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.493551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.503544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.503544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.503544 LLDP, length 82 [|LLDP] 17:25:26.503544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d9 4ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.503545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.503545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.503546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.513549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.513549 LLDP, length 82 [|LLDP] 17:25:26.513549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.513549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.513549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.513549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.513550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.513550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.513550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.513550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e0 f116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.513550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.513550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.523541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.523541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.523542 LLDP, length 82 [|LLDP] 17:25:26.523542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.523542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.523542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e8 9236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.523542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.523542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.523542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.523542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.523542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.523542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.523542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.523542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.523542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.533541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 LLDP, length 82 [|LLDP] 17:25:26.533541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.533541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.533541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f0 3356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.533541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.533541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.533541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.533541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.533541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.533541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.533542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.533548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.543543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.543543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.543543 LLDP, length 82 [|LLDP] 17:25:26.543543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.543543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.543543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f7 d476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.543543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.543544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.543544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.543544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.543544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.543544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.553556 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.553556 LLDP, length 82 [|LLDP] 17:25:26.553557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.553557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.553557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ff 7596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.553557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.553557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.553557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.553557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.553557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.553557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.553557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.553557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.553557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.553557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.563544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 LLDP, length 82 [|LLDP] 17:25:26.563544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.563544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.563545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.563545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.563545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.563545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0707 16b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.563545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.563545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.573542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 LLDP, length 82 [|LLDP] 17:25:26.573542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.573542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.573542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070e b7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.573542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.573542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.573542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.573543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.573543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.573543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.583565 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.583565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.583565 LLDP, length 82 [|LLDP] 17:25:26.583565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.583565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.583565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0716 58f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.583566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.583566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.583566 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.583566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.583566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.583566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.583566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.583566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.583566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.593555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 LLDP, length 82 [|LLDP] 17:25:26.593555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.593555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.593555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.593555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.593555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.593555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071d fa16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.593556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.593556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.603541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.603541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.603541 LLDP, length 82 [|LLDP] 17:25:26.603541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.603541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.603541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0725 9b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.603541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.603541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.603542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.603542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.603542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.603542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.603542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.603542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.603542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.613544 LLDP, length 82 [|LLDP] 17:25:26.613544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.613544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.613544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072d 3c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.613544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.613544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.613544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.613545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.613545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.613545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.613545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.623543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 LLDP, length 82 [|LLDP] 17:25:26.623543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.623543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.623543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0734 dd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.623543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.623543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.623543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.623543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.623543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.633560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.633560 LLDP, length 82 [|LLDP] 17:25:26.633560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.633560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.633560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073c 7e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.633560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.633561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.633561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.633561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.633561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.633561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.633561 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.633561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.633561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.633561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.643543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.643543 LLDP, length 82 [|LLDP] 17:25:26.643543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.643543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.643543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.643543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.643544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.643544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0744 1fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.643544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.643544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.653549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 LLDP, length 82 [|LLDP] 17:25:26.653550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.653550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.653550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074b c0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.653550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.653550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.653550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.653550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.653550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.653550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.663543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.663543 LLDP, length 82 [|LLDP] 17:25:26.663543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.663543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.663543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0753 61f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.663543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.663543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.663543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.663544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.663544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.663544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.663544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.673542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.673542 LLDP, length 82 [|LLDP] 17:25:26.673543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.673543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.673543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.673543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.673543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.673543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075b 0316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.673543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.673543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.683538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.683538 LLDP, length 82 [|LLDP] 17:25:26.683538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.683538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.683538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0762 a436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.683538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.683538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.683539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.683539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.683539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.683539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.683539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.683539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.683539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.683539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.693545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.693545 LLDP, length 82 [|LLDP] 17:25:26.693546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.693546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.693546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076a 4556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.693546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.693546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.693546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.693546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.693546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.693546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.693546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.693546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.703542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 LLDP, length 82 [|LLDP] 17:25:26.703543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.703543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.703543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0771 e676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.703543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.703543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.703543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.703543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.703543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.713548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.713548 LLDP, length 82 [|LLDP] 17:25:26.713548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.713548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.713548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0779 8796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.713548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.713548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.713548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.713548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.713549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.713549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.713549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.713549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.713549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.713549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.723541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 LLDP, length 82 [|LLDP] 17:25:26.723541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.723541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.723541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.723541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0781 28b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.723541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.723542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.733542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.733542 LLDP, length 82 [|LLDP] 17:25:26.733542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.733542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.733542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0788 c9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.733542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.733542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.733542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.733542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.733543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.733543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.733543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.733543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.733543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.733543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.743543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 LLDP, length 82 [|LLDP] 17:25:26.743544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.743544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.743544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0790 6af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.743544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.743544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.743544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.743544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.743544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.743544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.753541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.753541 LLDP, length 82 [|LLDP] 17:25:26.753541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.753541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.753542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.753542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.753542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.753542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.753542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.753542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0798 0c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.753542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.753542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.763542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.763542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.763542 LLDP, length 82 [|LLDP] 17:25:26.763542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.763543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.763543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079f ad36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.763543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.763543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.763543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.763543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.763543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.763543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.763543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.773542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 LLDP, length 82 [|LLDP] 17:25:26.773543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.773543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.773543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a7 4e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.773543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.773543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.773543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.773543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.773543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.773543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.773543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.773543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.783539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 LLDP, length 82 [|LLDP] 17:25:26.783540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.783540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.783540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ae ef76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.783540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.783540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.783540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.783540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.783540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.793548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.793548 LLDP, length 82 [|LLDP] 17:25:26.793548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.793548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.793548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b6 9096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.793548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.793548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.793549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.793549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.793549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.793549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.793549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.803543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.803543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.803544 LLDP, length 82 [|LLDP] 17:25:26.803544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.803544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.803544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.803544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.803544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.803544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.803544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07be 31b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.803544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.803544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.813547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 LLDP, length 82 [|LLDP] 17:25:26.813548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.813548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.813548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c5 d2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.813548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.813548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.813548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.813548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.813548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.813548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.813548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.813549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.823582 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 LLDP, length 82 [|LLDP] 17:25:26.823583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.823583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.823583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cd 73f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.823583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.823583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.823583 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.823583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.823583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.823583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.823583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.823583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.833581 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.833581 LLDP, length 82 [|LLDP] 17:25:26.833581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.833581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.833581 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.833581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.833581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.833582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.833582 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.833582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d5 1516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.833582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.833582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.843574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 LLDP, length 82 [|LLDP] 17:25:26.843574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.843574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.843574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07dc b636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.843574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.843574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.843574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.843574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.843575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.843575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.843575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.843575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.853574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 LLDP, length 82 [|LLDP] 17:25:26.853574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.853574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.853574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e4 5756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.853574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.853574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.853574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.853574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.853574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.853574 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.853574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.853575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.863570 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.863570 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.863570 LLDP, length 82 [|LLDP] 17:25:26.863570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.863570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.863570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07eb f876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.863571 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.863571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.863571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.863571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.863571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.863571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.873569 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.873569 LLDP, length 82 [|LLDP] 17:25:26.873569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.873569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.873569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f3 9996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.873570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.873570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.873570 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.873570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.873570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.873570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.873570 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.873570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.873570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.873570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.883588 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 LLDP, length 82 [|LLDP] 17:25:26.883588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.883588 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.883588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.883588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.883588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.883588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fb 3ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.883588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.883588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.883588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.883589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.883589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.893574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.893574 LLDP, length 82 [|LLDP] 17:25:26.893575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.893575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.893575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0802 dbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.893575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.893575 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.893575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.893575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.893575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.893575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.893575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.893575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.893575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.893575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.903549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.903549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.903549 LLDP, length 82 [|LLDP] 17:25:26.903549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.903549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.903549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080a 7cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.903550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.903550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.903550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.903550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.903550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.903550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.903550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.903550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.903550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.913549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.913549 LLDP, length 82 [|LLDP] 17:25:26.913549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.913549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.913549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.913549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.913549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.913549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.913549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.913550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0812 1e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.913550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.913550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.923542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.923542 LLDP, length 82 [|LLDP] 17:25:26.923542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.923542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.923542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0819 bf36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.923542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.923542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.923542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.923542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.923543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.923543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.923543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.923543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.933552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.933552 LLDP, length 82 [|LLDP] 17:25:26.933552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.933552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.933552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0821 6056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.933552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.933552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.933552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.933552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.933552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.933552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.933553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.933553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.933553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.933553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.943551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.943551 LLDP, length 82 [|LLDP] 17:25:26.943551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.943551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.943551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0829 0176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.943551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.943551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.943552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.943552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.943552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.943552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.943552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.953557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.953557 LLDP, length 82 [|LLDP] 17:25:26.953557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.953557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.953557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0830 a296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.953557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.953557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.953557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.953557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.953557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.953558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.953558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.953558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.953558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.953558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.963547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 LLDP, length 82 [|LLDP] 17:25:26.963547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.963547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.963547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.963547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.963547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.963547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0838 43b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.963547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.963547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.963547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.963548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.963548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.973542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.973542 LLDP, length 82 [|LLDP] 17:25:26.973542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.973542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.973542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083f e4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.973542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.973542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.973542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.973542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.973542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.973542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.973543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.973543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.973543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.973543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.983542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.983542 LLDP, length 82 [|LLDP] 17:25:26.983542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.983543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.983543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0847 85f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.983543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.983543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.983543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.983543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.983543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.983543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.983543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.983543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.983543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.983543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.993541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.993541 LLDP, length 82 [|LLDP] 17:25:26.993541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.993541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.993541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.993542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.993542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.993542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.993542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.993542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084f 2716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.993542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.993542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.003545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 LLDP, length 82 [|LLDP] 17:25:27.003545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.003545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.003545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0856 c836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.003545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.003545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.003545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.003545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.003546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.003546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.003546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.013549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 LLDP, length 82 [|LLDP] 17:25:27.013549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.013549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.013549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085e 6956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.013549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.013549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.013549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.013549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.013549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.013549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.013549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.013550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.023539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 LLDP, length 82 [|LLDP] 17:25:27.023539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.023539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.023539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0866 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.023539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.023539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.023539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.023539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.023539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.023540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.023540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.023540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.033567 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.033567 LLDP, length 82 [|LLDP] 17:25:27.033567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.033567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.033567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086d ab96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.033567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.033567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.033567 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.033567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.033567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.033567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.033568 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.033568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.033568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.033568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.043557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 LLDP, length 82 [|LLDP] 17:25:27.043557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.043557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.043557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.043557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.043557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.043558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0875 4cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.043558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.043558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.053552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.053552 LLDP, length 82 [|LLDP] 17:25:27.053552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.053552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.053552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087c edd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.053552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.053552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.053552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.053552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.053552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.053553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.053553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.053553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.053553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.053553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.063548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 LLDP, length 82 [|LLDP] 17:25:27.063548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.063548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.063548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0884 8ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.063548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.063548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.063548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.063548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.063548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.063548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.063548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.063549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.073564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.073564 LLDP, length 82 [|LLDP] 17:25:27.073564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.073564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.073564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.073565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.073565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.073565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.073565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.073565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088c 3016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.073565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.073565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.083543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.083543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.083543 LLDP, length 82 [|LLDP] 17:25:27.083543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.083543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.083544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0893 d136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.083544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.083544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.083544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.083544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.083544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.083544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.083544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.083544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.083544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 LLDP, length 82 [|LLDP] 17:25:27.093544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.093544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.093544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089b 7256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.093544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.093544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.093544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.093544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.103546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 LLDP, length 82 [|LLDP] 17:25:27.103546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.103546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.103546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a3 1376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.103546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.103546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.103546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.103546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.103546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.103547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.103547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.103547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.113552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.113552 LLDP, length 82 [|LLDP] 17:25:27.113552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.113553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.113553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08aa b496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.113553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.113553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.113553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.113553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.113553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.113553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.113553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.113553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.113553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.113553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.123546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 LLDP, length 82 [|LLDP] 17:25:27.123547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.123547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.123547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.123547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.123547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.123547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b2 55b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.123547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.123547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.133551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.133551 LLDP, length 82 [|LLDP] 17:25:27.133551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.133552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.133552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b9 f6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.133552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.133552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.133552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.133552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.133552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.133552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.133552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.133552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.133552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.133552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.143546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.143546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.143546 LLDP, length 82 [|LLDP] 17:25:27.143547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.143547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.143547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c1 97f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.143547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.143547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.143547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.143547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.143547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.143547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.143547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.143547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.143547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.153550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.153550 LLDP, length 82 [|LLDP] 17:25:27.153550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.153550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.153550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.153550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.153550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.153551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.153551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.153551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c9 3916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.153551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.153551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.163541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.163541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.163541 LLDP, length 82 [|LLDP] 17:25:27.163541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.163541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.163541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d0 da36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.163542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.163542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.163542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.163542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.163542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.163542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.163542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.173545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.173545 LLDP, length 82 [|LLDP] 17:25:27.173545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.173545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.173546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d8 7b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.173546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.173546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.173546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.173546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.173546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.173546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.173546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.173546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.173546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.173546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.183543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 LLDP, length 82 [|LLDP] 17:25:27.183543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.183543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.183543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e0 1c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.183543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.183543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.183544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.193543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.193543 LLDP, length 82 [|LLDP] 17:25:27.193543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.193543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.193543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e7 bd96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.193543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.193543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.193543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.193544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.193544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.193544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.193544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.193544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.193544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.193544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.203542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.203542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.203543 LLDP, length 82 [|LLDP] 17:25:27.203543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.203543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.203543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.203543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.203543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.203543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.203543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ef 5eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.203543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.203543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.213548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.213548 LLDP, length 82 [|LLDP] 17:25:27.213548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.213548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.213548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f6 ffd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.213548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.213548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.213548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.213549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.213549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.213549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.213549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.213549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.223550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.223550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.223550 LLDP, length 82 [|LLDP] 17:25:27.223550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.223550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.223550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fe a0f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.223550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.223551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.223551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.223551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.223551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.223551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.223551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.223551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.223551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.233557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.233557 LLDP, length 82 [|LLDP] 17:25:27.233557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.233557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.233557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.233557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.233558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.233558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.233558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.233558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0906 4216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.233558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.233558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.243545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.243545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.243545 LLDP, length 82 [|LLDP] 17:25:27.243546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.243546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.243546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090d e336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.243546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.243546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.243546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.243546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.243546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.243546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.243546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.253549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.253549 LLDP, length 82 [|LLDP] 17:25:27.253549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.253549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.253549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0915 8456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.253549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.253549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.253550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.253550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.253550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.253550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.253550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.253550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.253550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.253550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.263541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 LLDP, length 82 [|LLDP] 17:25:27.263541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.263541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.263541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091d 2576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.263541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.263541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.263541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.263541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.263541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.263541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.263542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.263542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.273549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 LLDP, length 82 [|LLDP] 17:25:27.273549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.273549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.273549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0924 c696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.273549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.273549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.273549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.273549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.273549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.273549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.273549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.273550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.283543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 LLDP, length 82 [|LLDP] 17:25:27.283543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.283543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.283543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.283543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.283543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.283543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092c 67b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.283543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.283544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.293544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 LLDP, length 82 [|LLDP] 17:25:27.293544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.293544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.293544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0934 08d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.293544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.293544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.293544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.293544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.293544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.293544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.293544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.293545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.303542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.303542 LLDP, length 82 [|LLDP] 17:25:27.303543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.303543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.303543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093b a9f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.303543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.303543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.303543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.303543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.303543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.303543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.303543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.303543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.313547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 LLDP, length 82 [|LLDP] 17:25:27.313547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.313547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.313547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.313547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0943 4b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.313547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.313548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.323546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.323546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.323546 LLDP, length 82 [|LLDP] 17:25:27.323546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.323546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.323547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094a ec36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.323547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.323547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.323547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.323547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.323547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.323547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.323547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.323547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.333552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.333552 LLDP, length 82 [|LLDP] 17:25:27.333552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.333552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.333553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0952 8d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.333553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.333553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.333553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.333553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.333553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.333553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.333553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.333553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.333553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.333553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.343544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 LLDP, length 82 [|LLDP] 17:25:27.343544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.343544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.343544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095a 2e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.343544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.343544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.343544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.343544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.343544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.343545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.343545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.343545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.345141 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:27.345244 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:27.353548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.353548 LLDP, length 82 [|LLDP] 17:25:27.353548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.353548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.353548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0961 cf96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.353548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.353548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.353548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.353548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.353549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.353549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.353549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.353549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.353549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.353549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.363548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 LLDP, length 82 [|LLDP] 17:25:27.363548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.363548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.363548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.363548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0969 70b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.363548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.363548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.363548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.363549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.363549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.373552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 LLDP, length 82 [|LLDP] 17:25:27.373553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.373553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.373553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0971 11d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.373553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.373553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.373553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.373553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.373553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.373553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.373553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.373554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.383544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.383544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.383545 LLDP, length 82 [|LLDP] 17:25:27.383545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.383545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.383545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0978 b2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.383545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.383545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.383545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.383545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.383545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.383545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.383545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.393551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.393551 LLDP, length 82 [|LLDP] 17:25:27.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.393551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.393552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.393552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.393552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0980 5416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.393552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.393552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.393552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.393552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.393552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.403543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.403543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.403543 LLDP, length 82 [|LLDP] 17:25:27.403543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.403544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.403544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0987 f536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.403544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.403544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.403544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.403544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.403544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.403544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.403544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.413555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.413555 LLDP, length 82 [|LLDP] 17:25:27.413556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.413556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.413556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098f 9656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.413556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.413556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.413556 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.413556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.413556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.413556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.413556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.413556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.413556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.413556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.423545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 LLDP, length 82 [|LLDP] 17:25:27.423546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.423546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.423546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0997 3776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.423546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.423546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.423546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.423546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.423546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.423546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.433552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.433552 LLDP, length 82 [|LLDP] 17:25:27.433552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.433552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.433552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099e d896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.433552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.433552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.433552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.433552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.433552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.433552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.433553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.433553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.443563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 LLDP, length 82 [|LLDP] 17:25:27.443563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.443563 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.443563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.443563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.443564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a6 79b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.443564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.443564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.443564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.443564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.443564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.443564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.453557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 LLDP, length 82 [|LLDP] 17:25:27.453557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.453557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.453557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ae 1ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.453557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.453557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.453557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.453557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.453557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.453558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.453558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.453558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.463544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 LLDP, length 82 [|LLDP] 17:25:27.463544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.463544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.463544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b5 bbf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.463544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.463544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.463544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.463544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.463544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.463544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.463545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.463545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.473544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 LLDP, length 82 [|LLDP] 17:25:27.473544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.473544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.473544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.473544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.473544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bd 5d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.473544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.473544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.473544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.473544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.473544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.473545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.483550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.483550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.483550 LLDP, length 82 [|LLDP] 17:25:27.483550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.483551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.483551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c4 fe36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.483551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.483551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.483551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.483551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.483551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.483551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.483551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.483551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.483551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.493563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 LLDP, length 82 [|LLDP] 17:25:27.493564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.493564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.493564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cc 9f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.493564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.493564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.493564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.493564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.493564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.493564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.493564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.493564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.503542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.503542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.503542 LLDP, length 82 [|LLDP] 17:25:27.503542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.503542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.503543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d4 4076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.503543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.503543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.503543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.503543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.503543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.503543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.503543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.503543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.503543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.513542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 LLDP, length 82 [|LLDP] 17:25:27.513542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.513542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.513542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09db e196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.513542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.513542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.513542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.513542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.513542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.513543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.513543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.513543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.523544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 LLDP, length 82 [|LLDP] 17:25:27.523544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.523544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.523544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.523544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.523544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e3 82b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.523545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.523545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.523545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.523545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.523545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.523545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.533549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 LLDP, length 82 [|LLDP] 17:25:27.533549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.533549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.533549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09eb 23d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.533549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.533549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.533549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.533549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.533550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.533550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.533550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.533550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.543549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.543549 LLDP, length 82 [|LLDP] 17:25:27.543549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.543549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.543549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f2 c4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.543549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.543549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.543549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.543549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.543549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.543550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.543550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.543550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.543550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.553548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 LLDP, length 82 [|LLDP] 17:25:27.553548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.553548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.553548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.553548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.553548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fa 6616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.553548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.553548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.553548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.553549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.553549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.553549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.563543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.563543 LLDP, length 82 [|LLDP] 17:25:27.563543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.563543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.563543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a02 0736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.563543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.563543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.563543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.563544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.563544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.563544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.573541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.573541 LLDP, length 82 [|LLDP] 17:25:27.573542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.573542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.573542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a09 a856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.573542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.573542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.573542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.573542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.573542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.573542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.573542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.573542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.583541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 LLDP, length 82 [|LLDP] 17:25:27.583541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.583541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.583541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a11 4976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.583541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.583541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.583542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.583542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.583542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.583542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.583542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.593543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.593543 LLDP, length 82 [|LLDP] 17:25:27.593543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a18 ea96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.593544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.593544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.593544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.603545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 LLDP, length 82 [|LLDP] 17:25:27.603545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.603545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.603545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.603545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.603546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a20 8bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.603546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.603546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.603546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.603546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.603546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.603546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 LLDP, length 82 [|LLDP] 17:25:27.613544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.613544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.613544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a28 2cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.613544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.613544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.613544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.613544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.613544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.613544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.613544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.613544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.623541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.623541 LLDP, length 82 [|LLDP] 17:25:27.623541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.623542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.623542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2f cdf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.623542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.623542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.623542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.623542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.623542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.623542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.623542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.623542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.633547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.633547 LLDP, length 82 [|LLDP] 17:25:27.633547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.633548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.633548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.633548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.633548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.633548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.633548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a37 6f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.633548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.633548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.633548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.633548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.633548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.633548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.643544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 LLDP, length 82 [|LLDP] 17:25:27.643544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.643544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.643544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3f 1036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.643544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.643544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.643544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.643544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.643544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.643544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.643544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.643545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.653550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.653550 LLDP, length 82 [|LLDP] 17:25:27.653550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.653550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.653550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a46 b156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.653550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.653550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.653550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.653550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.653550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.653551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.653551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.653551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.653551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.663544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 LLDP, length 82 [|LLDP] 17:25:27.663544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.663544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.663544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4e 5276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.663544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.663544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.663544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.663544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.663545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.663545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.673549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.673549 LLDP, length 82 [|LLDP] 17:25:27.673549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.673549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.673549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a55 f396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.673549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.673549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.673549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.673549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.673549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.673550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.673550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.673550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.673550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.673550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.683542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 LLDP, length 82 [|LLDP] 17:25:27.683542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.683542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.683542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.683542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.683543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5d 94b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.683543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.683543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.683543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.683543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.683543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.683543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.693543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.693543 LLDP, length 82 [|LLDP] 17:25:27.693543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.693543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.693544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a65 35d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.693544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.693544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.693544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.693544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.693544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.693544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.693544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.693544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.693544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.693544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.703543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.703543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.703543 LLDP, length 82 [|LLDP] 17:25:27.703543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.703543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.703543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6c d6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.703543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.703544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.703544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.703544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.703544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.703544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.703544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.703544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.703544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.713552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.713552 LLDP, length 82 [|LLDP] 17:25:27.713552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.713552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.713553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.713553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.713553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.713553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.713553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a74 7816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.713553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.713553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.713553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.713553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.713553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.713553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.723546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 LLDP, length 82 [|LLDP] 17:25:27.723547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.723547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.723547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7c 1936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.723547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.723547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.723547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.723547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.723547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.723547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.723547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.723547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.733548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.733548 LLDP, length 82 [|LLDP] 17:25:27.733548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.733549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.733549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a83 ba56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.733549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.733549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.733549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.733549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.733549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.733549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.733549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.733549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.733549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.733549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.743543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 LLDP, length 82 [|LLDP] 17:25:27.743543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.743543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.743543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8b 5b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.743543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.743543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.743543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.743543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.743543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.743544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.743544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.753543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.753543 LLDP, length 82 [|LLDP] 17:25:27.753543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.753543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.753543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a92 fc96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.753543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.753543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.753543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.753543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.753543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.753544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.753544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.753544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.753544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.753544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.763541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.763541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.763541 LLDP, length 82 [|LLDP] 17:25:27.763542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.763542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.763542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.763542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.763542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.763542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9a 9db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.763542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.763542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.763542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.763542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.763542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.763542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.773549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 LLDP, length 82 [|LLDP] 17:25:27.773549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.773549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.773549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa2 3ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.773549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.773549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.773549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.773549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.773549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.773550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.773550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.773550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.783545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.783545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.783546 LLDP, length 82 [|LLDP] 17:25:27.783546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.783546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.783546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa9 dff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.783546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.783546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.783546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.783546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.783546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.783546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.783546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.793552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 LLDP, length 82 [|LLDP] 17:25:27.793552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.793552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.793552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.793552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.793552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab1 8116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.793552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.793552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.793552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.793553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.793553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.793553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.803544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 LLDP, length 82 [|LLDP] 17:25:27.803544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.803544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.803544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab9 2236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.803544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.803544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.803544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.803545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.803545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.803545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.803545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.803545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.813550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.813550 LLDP, length 82 [|LLDP] 17:25:27.813550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.813550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.813550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac0 c356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.813550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.813550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.813550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.813550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.813550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.813551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.813551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.813551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.813551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.813551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.823547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 LLDP, length 82 [|LLDP] 17:25:27.823548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.823548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.823548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac8 6476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.823548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.823548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.823548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.823548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.823548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.823548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.823548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.823549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.833545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.833545 LLDP, length 82 [|LLDP] 17:25:27.833545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.833545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.833545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad0 0596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.833545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.833546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.833546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.833546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.833546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.833546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.833546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.833546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.833546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.833546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.843544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.843544 LLDP, length 82 [|LLDP] 17:25:27.843544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.843545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.843545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.843545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.843545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.843545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad7 a6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.843545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.843545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.843545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.843545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.843545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.853550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.853550 LLDP, length 82 [|LLDP] 17:25:27.853551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.853551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.853551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adf 47d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.853551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.853551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.853551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.853551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.853551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.853551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.853551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.853551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.853551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.853551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.863539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.863539 LLDP, length 82 [|LLDP] 17:25:27.863539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.863539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.863539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae6 e8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.863539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.863540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.863540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.863540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.863540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.863540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.863540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.863540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.863540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.863540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.873583 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.873583 LLDP, length 82 [|LLDP] 17:25:27.873584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.873584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.873584 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.873584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.873584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.873584 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.873584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aee 8a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.873584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.873584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.873584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.873584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.873584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.873584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.883575 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 LLDP, length 82 [|LLDP] 17:25:27.883575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.883575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.883575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af6 2b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.883575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.883575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.883575 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.883576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.883576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.883576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.883576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.883576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.893573 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 LLDP, length 82 [|LLDP] 17:25:27.893573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.893573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.893573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afd cc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.893573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.893573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.893573 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.893573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.893573 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.893574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.893574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.893574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.903575 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.903575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.903575 LLDP, length 82 [|LLDP] 17:25:27.903576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.903576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.903576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b05 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.903576 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.903576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.903576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.903576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.903576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.903576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.903576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.903576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.903576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.913551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.913551 LLDP, length 82 [|LLDP] 17:25:27.913551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.913551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.913551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0d 0e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.913551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.913551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.913551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.913551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.913551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.913552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.913552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.913552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.913552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.913552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.923564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 LLDP, length 82 [|LLDP] 17:25:27.923564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.923564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.923564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.923564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.923565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b14 afb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.923565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.923565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.923565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.923565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.923565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.923565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.933546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 LLDP, length 82 [|LLDP] 17:25:27.933547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.933547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.933547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1c 50d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.933547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.933547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.933547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.933547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.933547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.933547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.933547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.933547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.943546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.943546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.943546 LLDP, length 82 [|LLDP] 17:25:27.943546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.943546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.943546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b23 f1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.943546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.943547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.943547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.943547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.943547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.943547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.943547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.943547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.943547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.953560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.953560 LLDP, length 82 [|LLDP] 17:25:27.953561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.953561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.953561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.953561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.953561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.953561 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.953561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2b 9316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.953561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.953561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.953561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.953561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.953561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.953561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.963550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 LLDP, length 82 [|LLDP] 17:25:27.963551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.963551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.963551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b33 3436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.963551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.963551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.963551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.963551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.963551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.963551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.963551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.963552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.973547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.973547 LLDP, length 82 [|LLDP] 17:25:27.973547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.973547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.973547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3a d556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.973547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.973547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.973547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.973547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.973547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.973547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.973548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.973548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.973548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.973548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.983545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 LLDP, length 82 [|LLDP] 17:25:27.983545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.983545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.983545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b42 7676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.983545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.983545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.983545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.983545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.983545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.983545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.983545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.983546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.993545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.993545 LLDP, length 82 [|LLDP] 17:25:27.993545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.993545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.993545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4a 1796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.993545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.993545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.993545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.993545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.993545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.993546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.993546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.993546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.993546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.003543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.003543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.003543 LLDP, length 82 [|LLDP] 17:25:28.003543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.003543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.003544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.003544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.003544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.003544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b51 b8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.003544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.003544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.003544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.003544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.003544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.003544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.013544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.013544 LLDP, length 82 [|LLDP] 17:25:28.013544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.013544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.013544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b59 59d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.013544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.013544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.013544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.013544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.013545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.013545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.013545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.023547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.023547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.023548 LLDP, length 82 [|LLDP] 17:25:28.023548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.023548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.023548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b60 faf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.023548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.023548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.023548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.023548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.023548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.023548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.023548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.023548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.023548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.033548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 LLDP, length 82 [|LLDP] 17:25:28.033548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.033548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.033548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.033548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.033548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b68 9c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.033549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.033549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.033549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.033549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.033549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.033549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.043564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 LLDP, length 82 [|LLDP] 17:25:28.043564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.043564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.043564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b70 3d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.043564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.043564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.043564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.043564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.043565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.043565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.043565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.043565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.053548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.053548 LLDP, length 82 [|LLDP] 17:25:28.053548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.053548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.053548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b77 de56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.053548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.053548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.053548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.053548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.053548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.053549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.053549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.053549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.053549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.053549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.063542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.063542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.063543 LLDP, length 82 [|LLDP] 17:25:28.063543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.063543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.063543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7f 7f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.063543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.063543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.063543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.063543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.063543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.063543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.063543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.063543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.063543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.073546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.073546 LLDP, length 82 [|LLDP] 17:25:28.073546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.073546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.073546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b87 2096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.073546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.073546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.073546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.073547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.073547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.073547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.073547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.073547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.073547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.073547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.083547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 LLDP, length 82 [|LLDP] 17:25:28.083547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.083547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.083547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.083547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8e c1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.083547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.083547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.083547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.083548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.083548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 LLDP, length 82 [|LLDP] 17:25:28.093544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.093544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.093544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b96 62d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.093544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.093544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.093544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.093544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.103541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 LLDP, length 82 [|LLDP] 17:25:28.103541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.103541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.103541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9e 03f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.103541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.103541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.103541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.103541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.103541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.103541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.103542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.103542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.113541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 LLDP, length 82 [|LLDP] 17:25:28.113542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.113542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.113542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.113542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.113542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba5 a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.113542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.113542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.113542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.113542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.113542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.113542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.123543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 LLDP, length 82 [|LLDP] 17:25:28.123543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.123543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.123543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bad 4636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.123543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.123543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.123543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.123543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.123544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.123544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.123544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.133542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 LLDP, length 82 [|LLDP] 17:25:28.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb4 e756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.133543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.133544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.143544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.143544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.143544 LLDP, length 82 [|LLDP] 17:25:28.143544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.143544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.143545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbc 8876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.143545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.143545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.143545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.143545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.143545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.143545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.143545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.143545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.143545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.153542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.153542 LLDP, length 82 [|LLDP] 17:25:28.153542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.153543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.153543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc4 2996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.153543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.153543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.153543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.153543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.153543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.153543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.153543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.153543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.153543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.153543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.163542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 LLDP, length 82 [|LLDP] 17:25:28.163542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.163542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.163542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.163543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcb cab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.163543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.163543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.163543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.163543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.163543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.163543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.173543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.173543 LLDP, length 82 [|LLDP] 17:25:28.173543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.173543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.173543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd3 6bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.173543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.173543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.173544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.173544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.173544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.173544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.173544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.173544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.173544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.173544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.183542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.183542 LLDP, length 82 [|LLDP] 17:25:28.183542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.183542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.183542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdb 0cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.183542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.183543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.183543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.183543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.183543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.183543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.183543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.193541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.193541 LLDP, length 82 [|LLDP] 17:25:28.193541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.193541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.193541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.193541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.193541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.193541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.193542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be2 ae16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.193542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.193542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.193542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.193542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.193542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.193542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.203545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 LLDP, length 82 [|LLDP] 17:25:28.203546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.203546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.203546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bea 4f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.203546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.203546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.203546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.203546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.203546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.203546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.213547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 LLDP, length 82 [|LLDP] 17:25:28.213547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.213547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.213547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf1 f056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.213547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.213547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.213547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.213547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.213547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.213548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.213548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.223544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.223544 LLDP, length 82 [|LLDP] 17:25:28.223545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.223545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.223545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf9 9176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.223545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.223545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.223545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.223545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.223545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.223545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.223545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.223545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.223545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.223545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.233542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.233542 LLDP, length 82 [|LLDP] 17:25:28.233542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.233542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.233542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c01 3296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.233542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.233543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.233543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.233543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.233543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.233543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.233543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.233543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.243545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.243545 LLDP, length 82 [|LLDP] 17:25:28.243545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.243545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.243545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.243546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.243546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.243546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c08 d3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.243546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.243546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.243546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.243546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.243546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.253542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.253542 LLDP, length 82 [|LLDP] 17:25:28.253542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.253542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.253542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c10 74d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.253542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.253542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.253543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.253543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.253543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.253543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.253543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.253543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.253543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.253543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.263541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.263541 LLDP, length 82 [|LLDP] 17:25:28.263542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.263542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.263542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c18 15f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.263542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.263542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.263542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.263542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.263542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.263542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.263542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.263542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.263542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.263542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.273543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.273543 LLDP, length 82 [|LLDP] 17:25:28.273543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.273543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.273543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.273543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.273543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.273543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.273544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1f b716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.273544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.273544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.273544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.273544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.273544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.273544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.283541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.283541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.283541 LLDP, length 82 [|LLDP] 17:25:28.283541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.283541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.283541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c27 5836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.283541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.283541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.283541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.283542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.283542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.283542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.283542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.283542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.283542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.293542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 LLDP, length 82 [|LLDP] 17:25:28.293542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.293542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.293542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2e f956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.293542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.293542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.293542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.293542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.293542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.293542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.293542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.293543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.303565 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 LLDP, length 82 [|LLDP] 17:25:28.303565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.303565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.303565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c36 9a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.303565 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.303565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.303565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.303565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.303565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.303565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.303566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.303566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.313548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.313548 LLDP, length 82 [|LLDP] 17:25:28.313548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.313548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.313548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3e 3b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.313548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.313548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.313548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.313548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.313549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.313549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.313549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.313549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.313549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.313549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.323548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.323548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.323548 LLDP, length 82 [|LLDP] 17:25:28.323549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.323549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.323549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.323549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.323549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.323549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c45 dcb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.323549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.323549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.323549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.323549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.323549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.323549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.333546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.333546 LLDP, length 82 [|LLDP] 17:25:28.333546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.333546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.333546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4d 7dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.333546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.333546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.333547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.333547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.333547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.333547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.333547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.333547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.333547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.333547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.343550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 LLDP, length 82 [|LLDP] 17:25:28.343550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.343550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.343550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c55 1ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.343550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.343550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.343550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.343550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.343550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.343550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.343550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.343551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.353544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 LLDP, length 82 [|LLDP] 17:25:28.353544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.353544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.353544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.353544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.353544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5c c016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.353545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.353545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.353545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.353545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.353545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.353545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.363542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 LLDP, length 82 [|LLDP] 17:25:28.363543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.363543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.363543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c64 6136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.363543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.363543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.363543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.363543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.363543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.363543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.373555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.373555 LLDP, length 82 [|LLDP] 17:25:28.373555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.373617 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:28.373555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.373555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6c 0256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.373555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.373555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.373555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.373556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.373556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.373556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.373556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.373556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.373556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.373556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.373738 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:28.383540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.383540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.383540 LLDP, length 82 [|LLDP] 17:25:28.383540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.383540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.383541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c73 a376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.383541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.383541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.383541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.383541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.383541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.383541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.393550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 LLDP, length 82 [|LLDP] 17:25:28.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.393551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.393551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7b 4496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.393551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.393551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.393551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.393551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.393551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.393551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.393551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.403547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 LLDP, length 82 [|LLDP] 17:25:28.403547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.403547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.403547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.403547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.403547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.403547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c82 e5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.403547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.403548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.413545 LLDP, length 82 [|LLDP] 17:25:28.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8a 86d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.413546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.413546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.413546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.413546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.413546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.413546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.423545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.423545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.423545 LLDP, length 82 [|LLDP] 17:25:28.423545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.423546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.423546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c92 27f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.423546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.423546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.423546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.423546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.423546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.423546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.423546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.433545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.433545 LLDP, length 82 [|LLDP] 17:25:28.433546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.433546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.433546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.433546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.433546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.433546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.433546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.433546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c99 c916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.433546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.433546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.443544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.443544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.443544 LLDP, length 82 [|LLDP] 17:25:28.443544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.443544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.443545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca1 6a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.443545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.443545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.443545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.443545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.443545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.443545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.443545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.443545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.443545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.453542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.453542 LLDP, length 82 [|LLDP] 17:25:28.453543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.453543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.453543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca9 0b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.453543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.453543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.453543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.453543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.453543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.453543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.453543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.453543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.463542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.463542 LLDP, length 82 [|LLDP] 17:25:28.463542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.463542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.463542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb0 ac76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.463542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.463543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.463543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.463543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.463543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.463543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.463543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.473542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.473542 LLDP, length 82 [|LLDP] 17:25:28.473542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.473542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.473542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb8 4d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.473542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.473542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.473542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.473543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.473543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.473543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.473543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.473543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.473543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.473543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.483539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.483539 LLDP, length 82 [|LLDP] 17:25:28.483539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.483540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.483540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.483540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.483540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.483540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.483540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.483540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbf eeb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.483540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.483540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.493543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.493543 LLDP, length 82 [|LLDP] 17:25:28.493543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.493543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.493543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc7 8fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.493543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.493543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.493543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.493543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.493543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.493544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.493544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.493544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.493544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.493544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.503545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.503545 LLDP, length 82 [|LLDP] 17:25:28.503545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccf 30f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.503546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.503546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.503546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.503546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.503546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.513547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 LLDP, length 82 [|LLDP] 17:25:28.513547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.513547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.513547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.513547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.513547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.513547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd6 d216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.513547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.513547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.523545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.523545 LLDP, length 82 [|LLDP] 17:25:28.523545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.523545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.523545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cde 7336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.523545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.523545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.523545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.523545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.523546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.523546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.523546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.523546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.523546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.523546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.533545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.533545 LLDP, length 82 [|LLDP] 17:25:28.533545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.533545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.533545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce6 1456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.533545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.533545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.533545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.533546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.533546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.533546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.533546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.533546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.533546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.533546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.543545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 LLDP, length 82 [|LLDP] 17:25:28.543545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.543545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.543545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ced b576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.543545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.543545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.543546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.543546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.543546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.553543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.553543 LLDP, length 82 [|LLDP] 17:25:28.553543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.553543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.553544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf5 5696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.553544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.553544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.553544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.553544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.553544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.553544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.553544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.553544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.553544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.553544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.563544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 LLDP, length 82 [|LLDP] 17:25:28.563544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.563544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.563544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfc f7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.563544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.563545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.573546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.573546 LLDP, length 82 [|LLDP] 17:25:28.573546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.573547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.573547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d04 98d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.573547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.573547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.573547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.573547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.573547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.573547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.573547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.573547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.573547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.573547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.583542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.583542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.583542 LLDP, length 82 [|LLDP] 17:25:28.583543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.583543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.583543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0c 39f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.583543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.583543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.583543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.583543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.583543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.583543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.583543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.583543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.583543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.593543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.593543 LLDP, length 82 [|LLDP] 17:25:28.593543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.593543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.593543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.593543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d13 db16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.593544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.603551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 LLDP, length 82 [|LLDP] 17:25:28.603551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.603551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.603551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1b 7c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.603551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.603551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.603551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.603551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.603552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.603552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.603552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.603552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.613545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.613545 LLDP, length 82 [|LLDP] 17:25:28.613545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.613546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.613546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d23 1d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.613546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.613546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.613546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.613546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.613546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.613546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.613546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.613546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.613546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.613546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.623546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 LLDP, length 82 [|LLDP] 17:25:28.623546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.623546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.623546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2a be76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.623546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.623547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.623547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.633545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.633545 LLDP, length 82 [|LLDP] 17:25:28.633545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.633546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.633546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d32 5f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.633546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.633546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.633546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.633546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.633546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.633546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.633546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.633546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.633546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.633546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.643545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.643545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.643545 LLDP, length 82 [|LLDP] 17:25:28.643546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.643546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.643546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.643546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.643546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.643546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.643546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3a 00b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.643546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.643546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.653545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.653545 LLDP, length 82 [|LLDP] 17:25:28.653545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.653545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.653545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d41 a1d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.653545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.653545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.653545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.653546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.653546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.653546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.653546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.653546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.653546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.653546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.663542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 LLDP, length 82 [|LLDP] 17:25:28.663543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.663543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.663543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d49 42f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.663543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.663543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.663543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.663543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.663543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.663543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.663543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.663544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.673543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 LLDP, length 82 [|LLDP] 17:25:28.673543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.673543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.673543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.673543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d50 e416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.673543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.673544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.683544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.683544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.683545 LLDP, length 82 [|LLDP] 17:25:28.683545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.683545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.683545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d58 8536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.683545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.683545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.683545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.683545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.683545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.683545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.683545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.683545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.683545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.693544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.693544 LLDP, length 82 [|LLDP] 17:25:28.693544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.693545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.693545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d60 2656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.693545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.693545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.693545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.693545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.693545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.693545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.693545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.693545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.703546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 LLDP, length 82 [|LLDP] 17:25:28.703546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.703546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.703546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d67 c776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.703546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.703547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.713555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.713555 LLDP, length 82 [|LLDP] 17:25:28.713555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.713555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.713555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6f 6896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.713555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.713555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.713555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.713555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.713555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.713555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.713556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.713556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.713556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.713556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.723549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 LLDP, length 82 [|LLDP] 17:25:28.723549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.723549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.723549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.723550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.723550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d77 09b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.723550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.723550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.733546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 LLDP, length 82 [|LLDP] 17:25:28.733546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.733546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.733546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7e aad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.733546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.733546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.733546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.733546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.733546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.733546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.733547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.733547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.743546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.743546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.743547 LLDP, length 82 [|LLDP] 17:25:28.743547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.743547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.743547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d86 4bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.743547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.743547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.743547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.743547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.743547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.743547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.743547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.743547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.743547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.753544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.753544 LLDP, length 82 [|LLDP] 17:25:28.753544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.753545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.753545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.753545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.753545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.753545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.753545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.753545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8d ed16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.753545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.753545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.763545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.763545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.763545 LLDP, length 82 [|LLDP] 17:25:28.763545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.763545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.763546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d95 8e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.763546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.763546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.763546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.763546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.763546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.763546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.763546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.763546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.763546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.773543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.773543 LLDP, length 82 [|LLDP] 17:25:28.773543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.773543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.773543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9d 2f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.773544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.773544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.773544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.773544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.773544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.773544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.773544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.773544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.773544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.773544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.783550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.783550 LLDP, length 82 [|LLDP] 17:25:28.783550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.783550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.783550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da4 d076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.783550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.783550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.783550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.783550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.783551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.783551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.783551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.793543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.793543 LLDP, length 82 [|LLDP] 17:25:28.793543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.793543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.793543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dac 7196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.793543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.793543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.793543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.793543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.793543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.793544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.793544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.793544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.793544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.793544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.803558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.803558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.803558 LLDP, length 82 [|LLDP] 17:25:28.803558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.803558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.803559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.803559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.803559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.803559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.803559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db4 12b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.803559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.803559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.813557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.813557 LLDP, length 82 [|LLDP] 17:25:28.813557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.813557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.813557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbb b3d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.813557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.813557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.813557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.813557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.813558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.813558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.813558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.813558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.813558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.813558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.823558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 LLDP, length 82 [|LLDP] 17:25:28.823558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.823558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.823558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc3 54f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.823558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.823558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.823558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.823558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.823558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.823559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.823559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.823559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.833550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 LLDP, length 82 [|LLDP] 17:25:28.833550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.833550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.833550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.833550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.833550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.833550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dca f616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.833550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.833551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.843544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.843544 LLDP, length 82 [|LLDP] 17:25:28.843544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.843544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.843544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd2 9736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.843545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.843545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.843545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.843545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.843545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.843545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.843545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.843545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.853544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.853544 LLDP, length 82 [|LLDP] 17:25:28.853544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.853544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.853544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dda 3856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.853544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.853544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.853544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.853544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.853544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.853544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.853545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.853545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.853545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.853545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.863544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 LLDP, length 82 [|LLDP] 17:25:28.863544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.863544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.863544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de1 d976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.863544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.863544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.863544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.863544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.863544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.863544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.863545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.863545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.873546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.873546 LLDP, length 82 [|LLDP] 17:25:28.873547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.873547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.873547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de9 7a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.873547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.873547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.873547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.873547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.873547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.873547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.873547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.873547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.873547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.873547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.883546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 LLDP, length 82 [|LLDP] 17:25:28.883547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.883547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.883547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.883547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.883547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.883547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df1 1bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.883547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.883547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.893542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.893542 LLDP, length 82 [|LLDP] 17:25:28.893543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.893543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.893543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df8 bcd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.893543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.893543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.893543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.893543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.893543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.893543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.893543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.893543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.893543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.893543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.903552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.903552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.903552 LLDP, length 82 [|LLDP] 17:25:28.903552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.903552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.903552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e00 5df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.903552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.903552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.903553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.903553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.903553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.903553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.903553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.903553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.903553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.913547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.913547 LLDP, length 82 [|LLDP] 17:25:28.913547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.913548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.913548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.913548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.913548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.913548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.913548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.913548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e07 ff16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.913548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.913548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.923543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.923543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.923543 LLDP, length 82 [|LLDP] 17:25:28.923543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.923543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.923543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0f a036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.923543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.923543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.923543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.923544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.923544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.923544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.923544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.923544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.923544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.933542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.933542 LLDP, length 82 [|LLDP] 17:25:28.933542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.933542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.933542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e17 4156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.933542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.933542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.933542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.933542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.933542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.933542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.933542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.933543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.933543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.933543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.943542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 LLDP, length 82 [|LLDP] 17:25:28.943542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.943542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.943542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1e e276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.943542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.943542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.943542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.943543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.943543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.953541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.953541 LLDP, length 82 [|LLDP] 17:25:28.953542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.953542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.953542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e26 8396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.953542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.953542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.953542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.953542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.953542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.953542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.953542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.953542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.953542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.953542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.963543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 LLDP, length 82 [|LLDP] 17:25:28.963543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.963543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.963543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.963543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2e 24b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.963544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.963544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.973545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 LLDP, length 82 [|LLDP] 17:25:28.973545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.973545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.973545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e35 c5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.973545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.973545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.973545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.973545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.973545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.973546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.973546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.973546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.983545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.983545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.983545 LLDP, length 82 [|LLDP] 17:25:28.983545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.983545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.983545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3d 66f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.983546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.983546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.983546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.983546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.983546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.983546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.983546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.983546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.983546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.993545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.993545 LLDP, length 82 [|LLDP] 17:25:28.993546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.993546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.993546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.993546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.993546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.993546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e45 0816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.993546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.993546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.003545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.003545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.003545 LLDP, length 82 [|LLDP] 17:25:29.003546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.003546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.003546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4c a936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.003546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.003546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.003546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.003546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.003546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.003546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.003546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.013545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.013545 LLDP, length 82 [|LLDP] 17:25:29.013545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.013545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.013545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e54 4a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.013545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.013545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.013545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.013546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.013546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.013546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.023544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 LLDP, length 82 [|LLDP] 17:25:29.023544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.023544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.023544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5b eb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.023544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.023545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.023545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.033544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.033544 LLDP, length 82 [|LLDP] 17:25:29.033544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.033544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.033544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e63 8c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.033544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.033544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.033544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.033544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.033544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.033545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.033545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.033545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.033545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.033545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.043545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 LLDP, length 82 [|LLDP] 17:25:29.043545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.043545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.043545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.043546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.043546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.043546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6b 2db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.043546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.043546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.053547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.053547 LLDP, length 82 [|LLDP] 17:25:29.053547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.053547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.053547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e72 ced6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.053547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.053547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.053547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.053547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.053547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.053547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.053548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.053548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.053548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.053548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.063545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.063545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.063545 LLDP, length 82 [|LLDP] 17:25:29.063545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.063545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.063546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7a 6ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.063546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.063546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.063546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.063546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.063546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.063546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.063546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.063546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.063546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.073553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.073553 LLDP, length 82 [|LLDP] 17:25:29.073553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.073553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.073553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.073553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.073553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.073553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.073553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.073554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e82 1116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.073554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.073554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.083546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.083546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.083546 LLDP, length 82 [|LLDP] 17:25:29.083546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.083546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.083547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e89 b236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.083547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.083547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.083547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.083547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.083547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.083547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.083547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 LLDP, length 82 [|LLDP] 17:25:29.093545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.093545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.093545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e91 5356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.093545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.093545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.093545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.093545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.093545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.093545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.103543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.103543 LLDP, length 82 [|LLDP] 17:25:29.103543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.103543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.103543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e98 f476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.103543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.103544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.103544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.103544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.103544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.113546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.113546 LLDP, length 82 [|LLDP] 17:25:29.113546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.113546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.113546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea0 9596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.113546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.113546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.113546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.113547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.113547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.113547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.113547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.113547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.113547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.113547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.123543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 LLDP, length 82 [|LLDP] 17:25:29.123543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.123543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.123543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.123543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea8 36b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.123543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.123544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.133542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.133542 LLDP, length 82 [|LLDP] 17:25:29.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eaf d7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.133543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.133543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.143539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.143539 LLDP, length 82 [|LLDP] 17:25:29.143540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.143540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.143540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb7 78f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.143540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.143540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.143540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.143540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.143540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.143540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.143540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.143540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.143540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.143540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.153552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.153552 LLDP, length 82 [|LLDP] 17:25:29.153552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.153552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.153552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.153552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.153552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.153553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.153553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.153553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebf 1a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.153553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.153553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.163564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.163564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.163564 LLDP, length 82 [|LLDP] 17:25:29.163565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.163565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.163565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec6 bb36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.163565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.163565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.163565 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.163565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.163565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.163565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.163565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.163565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.163565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.173556 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.173556 LLDP, length 82 [|LLDP] 17:25:29.173556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.173557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.173557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ece 5c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.173557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.173557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.173557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.173557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.173557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.173557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.173557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.173557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.173557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.173557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.183544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.183544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.183544 LLDP, length 82 [|LLDP] 17:25:29.183545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.183545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.183545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed5 fd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.183545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.183545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.183545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.183545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.183545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.183545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.193546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.193546 LLDP, length 82 [|LLDP] 17:25:29.193546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.193546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.193546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edd 9e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.193546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.193546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.193546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.193546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.193546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.193547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.193547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.193547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.193547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.193547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.203546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 LLDP, length 82 [|LLDP] 17:25:29.203546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.203546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.203546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.203546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee5 3fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.203546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.203546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.203547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.203547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.203547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.213543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 LLDP, length 82 [|LLDP] 17:25:29.213543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.213543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.213543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eec e0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.213543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.213543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.213543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.213543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.213543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.213543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.213544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.213544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.223542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.223542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.223542 LLDP, length 82 [|LLDP] 17:25:29.223542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.223543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.223543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef4 81f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.223543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.223543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.223543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.223543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.223543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.223543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.223543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.223543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.223543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.233543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.233543 LLDP, length 82 [|LLDP] 17:25:29.233543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.233543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.233543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.233543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.233543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.233544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efc 2316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.233544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.233544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.243540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 LLDP, length 82 [|LLDP] 17:25:29.243541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.243541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.243541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f03 c436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.243541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.243541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.243541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.243541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.243541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.243541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.243541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.243541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.253545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.253545 LLDP, length 82 [|LLDP] 17:25:29.253545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.253545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.253545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0b 6556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.253545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.253545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.253545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.253545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.253546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.253546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.253546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.253546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.253546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.253546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.263542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.263542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.263542 LLDP, length 82 [|LLDP] 17:25:29.263542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.263543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.263543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f13 0676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.263543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.263543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.263543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.263543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.263543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.263543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.273551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.273551 LLDP, length 82 [|LLDP] 17:25:29.273551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.273551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.273551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1a a796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.273551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.273551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.273552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.273552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.273552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.273552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.273552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.273552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.273552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.273552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.283546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 LLDP, length 82 [|LLDP] 17:25:29.283546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.283546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.283546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.283546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.283546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.283547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f22 48b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.283547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.283547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.293544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.293544 LLDP, length 82 [|LLDP] 17:25:29.293544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.293544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.293545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f29 e9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.293545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.293545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.293545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.293545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.293545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.293545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.293545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.293545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.293545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.293545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.303543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 LLDP, length 82 [|LLDP] 17:25:29.303543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.303543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.303543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f31 8af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.303543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.303543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.303543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.303544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.303544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.303544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.303544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.303544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.313543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.313543 LLDP, length 82 [|LLDP] 17:25:29.313543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.313544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.313544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.313544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.313544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.313544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.313544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.313544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f39 2c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.313544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.313544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.323541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.323541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.323541 LLDP, length 82 [|LLDP] 17:25:29.323541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.323541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.323541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f40 cd36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.323541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.323541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.323542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.323542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.323542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.323542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.323542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.323542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.323542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.333549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.333549 LLDP, length 82 [|LLDP] 17:25:29.333549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.333549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.333550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f48 6e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.333550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.333550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.333550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.333550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.333550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.333550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.333550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.333550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.343550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 LLDP, length 82 [|LLDP] 17:25:29.343550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.343550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.343550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f50 0f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.343550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.343551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.343551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.343551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.343551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.353554 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.353554 LLDP, length 82 [|LLDP] 17:25:29.353554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.353554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.353555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f57 b096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.353555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.353555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.353555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.353555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.353555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.353555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.353555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.353555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.353555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.353555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.363548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 LLDP, length 82 [|LLDP] 17:25:29.363548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.363548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.363548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.363548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5f 51b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.363548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.363548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.363549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.363549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.363549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.373550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.373550 LLDP, length 82 [|LLDP] 17:25:29.373550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.373550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.373550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f66 f2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.373550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.373550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.373550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.373550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.373551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.373551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.373551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.373551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.373551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.373551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.383552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 LLDP, length 82 [|LLDP] 17:25:29.383553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.383553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.383553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6e 93f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.383553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.383553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.383553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.383553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.383553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.383553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.383553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.383553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.393136 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:29.393238 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:29.393538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.393538 LLDP, length 82 [|LLDP] 17:25:29.393538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.393538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.393539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.393539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.393539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.393539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.393539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f76 3516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.393539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.393539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.393539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.393539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.393539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.393539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.403547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.403547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.403547 LLDP, length 82 [|LLDP] 17:25:29.403547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.403547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.403547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7d d636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.403547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.403547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.403547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.403548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.403548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.403548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.403548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.403548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.403548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 LLDP, length 82 [|LLDP] 17:25:29.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f85 7756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.413545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.413545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.413546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.413546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.423544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 LLDP, length 82 [|LLDP] 17:25:29.423544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.423544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.423544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8d 1876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.423544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.423544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.423544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.423544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.423545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.423545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.423545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.433553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 LLDP, length 82 [|LLDP] 17:25:29.433553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.433553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.433553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f94 b996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.433553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.433553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.433553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.433553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.433554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.433554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.433554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.443545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 LLDP, length 82 [|LLDP] 17:25:29.443545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.443545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.443546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.443546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.443546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9c 5ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.443546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.443546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.443546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.443546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.443546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.443546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.453551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.453551 LLDP, length 82 [|LLDP] 17:25:29.453551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.453551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.453551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa3 fbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.453551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.453551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.453551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.453551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.453552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.453552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.453552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.453552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.453552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.453552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.463544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.463544 LLDP, length 82 [|LLDP] 17:25:29.463544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.463544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.463545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fab 9cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.463545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.463545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.463545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.463545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.463545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.463545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.463545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.463545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.463545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.463545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.473547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 LLDP, length 82 [|LLDP] 17:25:29.473547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.473547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.473547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.473547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.473547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb3 3e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.473547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.473548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.473548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.473548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.473548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.473548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.483545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 LLDP, length 82 [|LLDP] 17:25:29.483546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.483546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.483546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fba df36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.483546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.483546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.483546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.483546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.483546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.483546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.483546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.483546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.493545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.493545 LLDP, length 82 [|LLDP] 17:25:29.493545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.493546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.493546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc2 8056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.493546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.493546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.493546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.493546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.493546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.493546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.493546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.493546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.493546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.493546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.503544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.503544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.503545 LLDP, length 82 [|LLDP] 17:25:29.503545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fca 2176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.503545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.503545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.503545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.513545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.513545 LLDP, length 82 [|LLDP] 17:25:29.513545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.513545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.513546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd1 c296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.513546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.513546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.513546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.513546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.513546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.513546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.513546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.513546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.523542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.523542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.523542 LLDP, length 82 [|LLDP] 17:25:29.523542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.523542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.523543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.523543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.523543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.523543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd9 63b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.523543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.523543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.523543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.523543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.523543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.523543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.533544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 LLDP, length 82 [|LLDP] 17:25:29.533544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.533544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.533544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe1 04d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.533544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.533544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.533544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.533544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.533545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.533545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.533545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.533545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.543545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 LLDP, length 82 [|LLDP] 17:25:29.543545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.543545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.543545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe8 a5f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.543545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.543545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.543545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.543545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.543545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.543546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.543546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.543546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.553550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 LLDP, length 82 [|LLDP] 17:25:29.553550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.553550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.553550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.553550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.553550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff0 4716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.553550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.553550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.553550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.553550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.553550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.553551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.563545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 LLDP, length 82 [|LLDP] 17:25:29.563546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.563546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.563546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff7 e836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.563546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.563546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.563546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.563546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.563546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.563546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.563546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.563547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.573549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.573549 LLDP, length 82 [|LLDP] 17:25:29.573549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.573550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.573550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fff 8956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.573550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.573550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.573550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.573550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.573550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.573550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.573550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.573550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.583553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.583553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.583553 LLDP, length 82 [|LLDP] 17:25:29.583553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.583553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.583553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1007 2a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.583553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.583554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.583554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.583554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.583554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.583554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.583554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.583554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.583554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.593544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 LLDP, length 82 [|LLDP] 17:25:29.593544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100e cb96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.593544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.593545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.603544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 LLDP, length 82 [|LLDP] 17:25:29.603544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.603544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.603544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.603545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.603545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1016 6cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.603545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.603545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.603545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.603545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.603545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.603545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.613544 LLDP, length 82 [|LLDP] 17:25:29.613545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.613545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.613545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101e 0dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.613545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.613545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.613545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.613545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.613545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.613545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.613545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.623546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 LLDP, length 82 [|LLDP] 17:25:29.623546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.623546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.623546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1025 aef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.623546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.623546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.623546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.623546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.623547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.623547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.623547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.633544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 LLDP, length 82 [|LLDP] 17:25:29.633544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.633544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.633544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.633544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.633544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102d 5016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.633544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.633545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.633545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.633545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.633545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.633545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.643542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.643542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.643542 LLDP, length 82 [|LLDP] 17:25:29.643543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.643543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.643543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1034 f136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.643543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.643543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.643543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.643543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.643543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.643543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.643543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.653552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.653552 LLDP, length 82 [|LLDP] 17:25:29.653552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.653552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.653552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103c 9256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.653552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.653553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.653553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.653553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.653553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.653553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.653553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.653553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.653553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.653553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.663544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.663544 LLDP, length 82 [|LLDP] 17:25:29.663544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.663544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.663544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1044 3376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.663545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.663545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.663545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.663545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.663545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.663545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.663545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.663545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.663545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.673544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 LLDP, length 82 [|LLDP] 17:25:29.673544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.673544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.673544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104b d496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.673544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.673544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.673544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.673544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.673544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.673544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.673544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.673545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.683547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 LLDP, length 82 [|LLDP] 17:25:29.683547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.683547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.683547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.683547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.683547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1053 75b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.683547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.683547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.683547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.683548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.683548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.683548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.693545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.693545 LLDP, length 82 [|LLDP] 17:25:29.693545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.693545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.693545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105b 16d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.693545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.693545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.693545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.693546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.693546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.693546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.693546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.693546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.703545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.703545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.703545 LLDP, length 82 [|LLDP] 17:25:29.703545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.703545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.703545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1062 b7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.703545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.703546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.703546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.713545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.713545 LLDP, length 82 [|LLDP] 17:25:29.713545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.713545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.713546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.713546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.713546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.713546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.713546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106a 5916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.713546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.713546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.713546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.713546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.713546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.713546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.723549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.723549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.723550 LLDP, length 82 [|LLDP] 17:25:29.723550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.723550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.723550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1071 fa36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.723550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.723550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.723550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.723550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.723550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.723550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.723550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:30.417141 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:30.417250 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6653 packets captured 6653 packets received by filter 0 packets dropped by kernel 886 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 2] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg2 with rc 0 and out 17:25:23.201199 LLDP, length 219: localhost 17:25:25.303576 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 LLDP, length 82 [|LLDP] 17:25:25.303577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.303727 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:25.303577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.303577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0345 c8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.303577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.303577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.303577 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.303577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.303577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.303577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.303577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.303577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.303577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.304031 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:25.313551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 LLDP, length 82 [|LLDP] 17:25:25.313551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.313551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.313551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.313551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.313551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.313551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.313551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.313552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034d 6a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.313552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.313552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.313552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.313552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.323546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 LLDP, length 82 [|LLDP] 17:25:25.323546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.323546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.323546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0355 0b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.323546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.323546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.323546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.323546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.323546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.323546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.323546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.323547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.333545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.333545 LLDP, length 82 [|LLDP] 17:25:25.333545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.333546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.333546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035c ac56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.333546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.333546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.333546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.333546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.333546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.333546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.333546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.333546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.333546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.333546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.343542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 LLDP, length 82 [|LLDP] 17:25:25.343543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.343543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.343543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.343543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.343543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.343543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.343543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0364 4d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.343543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.343543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.343543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.353558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.353558 LLDP, length 82 [|LLDP] 17:25:25.353558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.353558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.353558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036b ee96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.353559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.353559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.353559 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.353559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.353559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.353559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.353559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.353559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.353559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.353559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.363542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.363542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.363542 LLDP, length 82 [|LLDP] 17:25:25.363542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.363542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.363542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0373 8fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.363542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.363543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.363543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.363543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.363543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.363543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.363543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.373547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.373547 LLDP, length 82 [|LLDP] 17:25:25.373547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.373547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.373547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037b 30d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.373547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.373547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.373547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.373547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.373548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.373548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.373548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.373548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.373548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.373548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.383544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 LLDP, length 82 [|LLDP] 17:25:25.383544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.383544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.383544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0382 d1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.383544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.383544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.383544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.383544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.383544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.383544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.383545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.383545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.393551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.393551 LLDP, length 82 [|LLDP] 17:25:25.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.393551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.393552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.393552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.393552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038a 7316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.393552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.393552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.393552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.403560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 LLDP, length 82 [|LLDP] 17:25:25.403560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.403560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.403560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0392 1436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.403560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.403560 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.403560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.403560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.403560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.403560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.403560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.403560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.403561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 LLDP, length 82 [|LLDP] 17:25:25.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0399 b556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.413545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.413545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.413545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.413545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.423547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.423547 LLDP, length 82 [|LLDP] 17:25:25.423548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.423548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.423548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.423548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.423548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.423548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.423548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.423548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a1 5676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.423548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.423548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.423548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.423548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.423548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.433552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.433552 LLDP, length 82 [|LLDP] 17:25:25.433552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.433553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.433553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a8 f796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.433553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.433553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.433553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.433553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.433553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.433553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.433553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.443542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.443542 LLDP, length 82 [|LLDP] 17:25:25.443542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.443542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.443542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b0 98b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.443542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.443542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.443542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.443542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.443543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.443543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.443543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.443543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.443543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.443543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.453541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 LLDP, length 82 [|LLDP] 17:25:25.453541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.453541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.453541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b8 39d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.453541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.453541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.453541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.453541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.453541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.453541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.453542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.453542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.453542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.463541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 LLDP, length 82 [|LLDP] 17:25:25.463541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.463541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.463541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bf daf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.463541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.463541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.463541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.463541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.463541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.463541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.463542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.473555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 LLDP, length 82 [|LLDP] 17:25:25.473555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.473555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.473555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.473555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.473555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.473555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.473556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c7 7c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.473556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.473556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.473556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.473556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.473556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.483541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 LLDP, length 82 [|LLDP] 17:25:25.483542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.483542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.483542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cf 1d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.483542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.483542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.483542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.483542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.483542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.483542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.483542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.483542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.483542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.493537 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.493537 LLDP, length 82 [|LLDP] 17:25:25.493537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.493537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.493538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d6 be56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.493538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.493538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.493538 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.493538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.493538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.493538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.493538 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.493538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.493538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.503539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.503539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.503539 LLDP, length 82 [|LLDP] 17:25:25.503539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.503540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.503540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.503540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.503540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.503540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.503540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.503540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03de 5f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.503540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.503540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.503540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.513541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.513541 LLDP, length 82 [|LLDP] 17:25:25.513541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.513541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.513541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e6 0096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.513541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.513541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.513546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.513546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.513546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.513546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.523540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 LLDP, length 82 [|LLDP] 17:25:25.523540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.523540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.523540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.523540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.523541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.523541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ed a1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.523541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.523541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.523541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.523541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.523541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.523541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.533543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 LLDP, length 82 [|LLDP] 17:25:25.533543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.533543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.533543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f5 42d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.533543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.533543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.533543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.533543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.533543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.533543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.533543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.533544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.533544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.543549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 LLDP, length 82 [|LLDP] 17:25:25.543549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.543549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.543549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fc e3f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.543549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.543549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.543549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.543549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.543550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.543550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.543550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.553548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 LLDP, length 82 [|LLDP] 17:25:25.553548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.553548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.553548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.553548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.553548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.553548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0404 8516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.553548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.553548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.553549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.553549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.553549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.553549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.563542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.563542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.563542 LLDP, length 82 [|LLDP] 17:25:25.563542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.563542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.563542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040c 2636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.563543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.563543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.563543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.563543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.563543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.563543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.563543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.563543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.563543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.573540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 LLDP, length 82 [|LLDP] 17:25:25.573541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.573541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.573541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0413 c756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.573541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.573541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.573541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.573541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.573541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.573541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.573541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.573541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.573541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.583540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.583540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.583541 LLDP, length 82 [|LLDP] 17:25:25.583541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.583541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.583541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041b 6876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.583541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.583541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.583541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.583541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.583541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.583541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.583541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.593544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.593544 LLDP, length 82 [|LLDP] 17:25:25.593544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0423 0996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.593550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.593550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.593550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.593550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.593550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.593550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.593550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.593550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.593550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.593550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.603539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 LLDP, length 82 [|LLDP] 17:25:25.603539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.603539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.603539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.603539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.603539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.603539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042a aab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.603540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.603540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.603540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.603540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.603540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.603540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.613563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 LLDP, length 82 [|LLDP] 17:25:25.613564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.613564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.613564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0432 4bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.613564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.613564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.613564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.613564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.613564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.613564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.613564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.613564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.613565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.623541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 LLDP, length 82 [|LLDP] 17:25:25.623541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.623541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.623541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0439 ecf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.623541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.623541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.623541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.623541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.623541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.623541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.623542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.623542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.633542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 LLDP, length 82 [|LLDP] 17:25:25.633542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.633542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.633542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.633542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.633542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.633542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0441 8e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.633542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.633543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.633543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.633543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.633543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.633543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.643573 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.643573 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.643574 LLDP, length 82 [|LLDP] 17:25:25.643574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.643574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.643574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0449 2f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.643574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.643574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.643574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.643574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.643574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.643574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.643574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.643574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.643574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.653577 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.653577 LLDP, length 82 [|LLDP] 17:25:25.653577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.653577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.653577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0450 d056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.653577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.653577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.653578 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.653578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.653578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.653578 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.653578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.653578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.653578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.653578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.663572 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 LLDP, length 82 [|LLDP] 17:25:25.663572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.663572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.663572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0458 7176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.663572 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.663572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.663573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.663573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.663573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.663573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.663573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.663573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.663573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.673555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.673555 LLDP, length 82 [|LLDP] 17:25:25.673555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.673555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.673555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0460 1296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.673555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.673555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.673555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.673556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.673556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.673556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.673556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.673556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.673556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.673556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.683551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 LLDP, length 82 [|LLDP] 17:25:25.683551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.683551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.683551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.683551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.683551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.683551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0467 b3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.683551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.683552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.683552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.683552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.683552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.683552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.693551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.693551 LLDP, length 82 [|LLDP] 17:25:25.693551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.693551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.693551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046f 54d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.693551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.693551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.693551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.693551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.693552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.693552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.693552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.693552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.693552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.693552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.703545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.703545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.703545 LLDP, length 82 [|LLDP] 17:25:25.703545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.703545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.703545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0476 f5f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.703545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.703545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.703546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.713561 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.713561 LLDP, length 82 [|LLDP] 17:25:25.713561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.713561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.713561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.713561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.713561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.713562 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.713562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047e 9716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.713562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.713562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.713562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.713562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.713562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.713562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.723555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.723555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.723555 LLDP, length 82 [|LLDP] 17:25:25.723555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.723555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.723556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0486 3836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.723556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.723556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.723556 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.723556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.723556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.723556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.723556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.723556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.723556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.733547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 LLDP, length 82 [|LLDP] 17:25:25.733547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.733547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.733547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048d d956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.733547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.733547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.733547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.733547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.733547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.733547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.733547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.733547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.733548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.743550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.743550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.743551 LLDP, length 82 [|LLDP] 17:25:25.743551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.743551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.743551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0495 7a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.743551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.743551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.743551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.743551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.743551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.743551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.743551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.743551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.743551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.753552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 LLDP, length 82 [|LLDP] 17:25:25.753552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.753552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.753552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049d 1b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.753552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.753552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.753552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.753552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.753552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.753552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.753553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.753553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.753553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.763543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 LLDP, length 82 [|LLDP] 17:25:25.763543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.763543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.763543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.763543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.763543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a4 bcb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.763543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.763543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.763543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.763543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.763544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.773551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 LLDP, length 82 [|LLDP] 17:25:25.773551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.773551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.773551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ac 5dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.773551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.773551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.773551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.773551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.773551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.773551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.773552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.773552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.773552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.783545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.783545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.783545 LLDP, length 82 [|LLDP] 17:25:25.783545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.783545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.783545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b3 fef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.783545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.783545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.783545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.783546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.783546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.783546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.783546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.793549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 LLDP, length 82 [|LLDP] 17:25:25.793549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.793549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.793549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.793549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.793549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bb a016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.793549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.793549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.793549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.793550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.803553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.803553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.803553 LLDP, length 82 [|LLDP] 17:25:25.803554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.803554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.803554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c3 4136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.803554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.803554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.803554 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.803554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.803554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.803554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.803554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.803554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.803554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.813584 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.813584 LLDP, length 82 [|LLDP] 17:25:25.813584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.813584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.813585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ca e256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.813585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.813585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.813585 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.813585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.813585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.813585 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.813585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.813585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.813585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.813585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.823558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 LLDP, length 82 [|LLDP] 17:25:25.823559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.823559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.823559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d2 8376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.823559 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.823559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.823559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.823559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.823559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.823559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.823559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.823559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.823559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.833546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.833546 LLDP, length 82 [|LLDP] 17:25:25.833546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.833547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.833547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04da 2496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.833547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.833547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.833547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.833547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.833547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.833547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.833547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.833547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.833547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.833547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.843542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 LLDP, length 82 [|LLDP] 17:25:25.843543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.843543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.843543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.843543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.843543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.843543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e1 c5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.843543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.843543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.843543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.843543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.843543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.843543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.853544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 LLDP, length 82 [|LLDP] 17:25:25.853545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.853545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.853545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e9 66d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.853545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.853545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.853545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.853545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.853545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.853545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.853545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.853545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.853545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.863545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 LLDP, length 82 [|LLDP] 17:25:25.863545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.863545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.863545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f1 07f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.863545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.863545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.863545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.863545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.863545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.863545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.863545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.863545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.863546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.873550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 LLDP, length 82 [|LLDP] 17:25:25.873550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.873550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.873550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.873550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.873550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.873550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f8 a916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.873550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.873550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.873550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.873550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.873550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.873551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.883544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.883544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.883544 LLDP, length 82 [|LLDP] 17:25:25.883544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.883544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.883545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0500 4a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.883545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.883545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.883545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.883545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.883545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.883545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.883545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.883545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.883545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.893551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.893551 LLDP, length 82 [|LLDP] 17:25:25.893551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.893551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.893551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0507 eb56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.893551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.893551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.893551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.893551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.893551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.893551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.893552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.893552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.893552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.893552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.903544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.903544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.903544 LLDP, length 82 [|LLDP] 17:25:25.903544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.903544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.903544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050f 8c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.903544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.903545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.903545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.903545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.903545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.903545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.903545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.903545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.903545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.913544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.913544 LLDP, length 82 [|LLDP] 17:25:25.913544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.913544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.913544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0517 2d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.913544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.913544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.913544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.913544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.913544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.913549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.913549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.913550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.913550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.913550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.923542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.923542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.923543 LLDP, length 82 [|LLDP] 17:25:25.923543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.923543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.923543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.923543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.923543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051e ceb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.923543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.923543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.923543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.923543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.923543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.933545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 LLDP, length 82 [|LLDP] 17:25:25.933546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.933546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.933546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0526 6fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.933546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.933546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.933546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.933546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.933546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.933546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.933546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.933546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.933546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.943548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 LLDP, length 82 [|LLDP] 17:25:25.943548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.943548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.943548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052e 10f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.943548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.943548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.943548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.943548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.943548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.943548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.943548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.943548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.943549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.953545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.953545 LLDP, length 82 [|LLDP] 17:25:25.953545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.953545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.953545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.953545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.953545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.953546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.953546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0535 b216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.953546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.953546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.953546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.953546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.953546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.953546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.963542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.963542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.963542 LLDP, length 82 [|LLDP] 17:25:25.963542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.963542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.963542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053d 5336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.963543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.963543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.963543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.963543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.963543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.963543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.963543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.973549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.973549 LLDP, length 82 [|LLDP] 17:25:25.973549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.973549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.973549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0544 f456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.973549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.973549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.973549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.973549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.973549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.973550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.973550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.973550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.973550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.973550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.983540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 LLDP, length 82 [|LLDP] 17:25:25.983540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.983540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.983540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054c 9576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.983540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.983540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.983540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.983540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.983540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.983541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.983541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.983541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.983541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:25.993550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 LLDP, length 82 [|LLDP] 17:25:25.993550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:25.993550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:25.993550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0554 3696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:25.993550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:25.993550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:25.993550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:25.993550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.993550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:25.993550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:25.993550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:25.993551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:25.993551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.003538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 LLDP, length 82 [|LLDP] 17:25:26.003538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.003538 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.003538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.003538 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.003538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.003538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055b d7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.003538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.003538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.003538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.003538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.003539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.003539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.013544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.013544 LLDP, length 82 [|LLDP] 17:25:26.013544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.013544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.013544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0563 78d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.013544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.013544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.013545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.013545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.013545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.013545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.023543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 LLDP, length 82 [|LLDP] 17:25:26.023544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.023544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.023544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056b 19f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.023544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.023544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.023544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.023544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.023544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.023544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.023544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.033549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.033549 LLDP, length 82 [|LLDP] 17:25:26.033549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.033549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.033550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.033550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.033550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.033550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.033550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0572 bb16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.033550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.033550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.033550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.033550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.033550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.033550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.043543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.043543 LLDP, length 82 [|LLDP] 17:25:26.043543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.043543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.043543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057a 5c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.043543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.043543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.043544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.043544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.043544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.043544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.043544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.043544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.043544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.043544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.053541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.053541 LLDP, length 82 [|LLDP] 17:25:26.053541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.053542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.053542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0581 fd56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.053542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.053542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.053542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.053542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.053542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.053542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.053542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.053542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.053542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.053542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.063541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 LLDP, length 82 [|LLDP] 17:25:26.063541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.063541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.063541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0589 9e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.063541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.063541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.063541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.063541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.063541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.063541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.063541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.063542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.063542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.073544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 LLDP, length 82 [|LLDP] 17:25:26.073544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.073544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.073544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0591 3f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.073544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.073544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.073544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.073544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.073544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.073544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.073544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.073545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.073545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.083542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 LLDP, length 82 [|LLDP] 17:25:26.083542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.083542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.083542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.083542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.083542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.083542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0598 e0b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.083542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.083542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.083542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.083542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.083542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.083543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.093563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 LLDP, length 82 [|LLDP] 17:25:26.093563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.093563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.093563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a0 81d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.093563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.093563 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.093563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.093563 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.093563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.093563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.093563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.093563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.093564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.103544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.103544 LLDP, length 82 [|LLDP] 17:25:26.103544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.103544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.103544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a8 22f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.103544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.103544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.103544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.103544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.103544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.103545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.103545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.103545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.103545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.113548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 LLDP, length 82 [|LLDP] 17:25:26.113548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.113548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.113548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.113548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.113548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.113548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05af c416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.113548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.113549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.113549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.113549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.113549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.113549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.123545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 LLDP, length 82 [|LLDP] 17:25:26.123545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.123545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.123545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b7 6536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.123545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.123545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.123545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.123545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.123545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.123545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.123546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.123546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.123546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.133543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 LLDP, length 82 [|LLDP] 17:25:26.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bf 0656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.133544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.133544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.133544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.143541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 LLDP, length 82 [|LLDP] 17:25:26.143541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.143541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.143541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c6 a776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.143541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.143541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.143542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.143542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.143542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.143542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.143542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.143542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.143542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.153540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.153540 LLDP, length 82 [|LLDP] 17:25:26.153540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.153540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.153540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ce 4896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.153541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.153541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.153541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.153541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.153541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.153541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.153541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.153541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.153541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.153541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.163541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 LLDP, length 82 [|LLDP] 17:25:26.163541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.163541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.163541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.163541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.163541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.163541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d5 e9b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.163541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.163542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.163542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.163542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.163542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.173550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.173550 LLDP, length 82 [|LLDP] 17:25:26.173550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.173550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.173550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dd 8ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.173550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.173550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.173551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.173551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.173551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.173551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.173551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.173551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.173551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.173551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.183543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.183543 LLDP, length 82 [|LLDP] 17:25:26.183544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.183544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.183544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e5 2bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.183544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.183544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.183544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.183544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.183544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.183544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.183544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.183544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.183544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.193547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 LLDP, length 82 [|LLDP] 17:25:26.193548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.193548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.193548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.193548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.193548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.193548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ec cd16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.193548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.193548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.193548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.193548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.193548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.193548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.203543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.203543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.203543 LLDP, length 82 [|LLDP] 17:25:26.203543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.203543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.203544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f4 6e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.203544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.203544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.203544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.203544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.203544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.203544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.203544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.203544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.203544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.213541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.213541 LLDP, length 82 [|LLDP] 17:25:26.213541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.213541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.213541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fc 0f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.213541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.213541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.213541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.213541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.213541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.213542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.213542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.213542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.213542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.213542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.223545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.223545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.223545 LLDP, length 82 [|LLDP] 17:25:26.223545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.223545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.223545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0603 b076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.223546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.223546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.223546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.223546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.223546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.223546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.223546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.223546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.223546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.233547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.233547 LLDP, length 82 [|LLDP] 17:25:26.233547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.233547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.233547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060b 5196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.233547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.233548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.233548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.233548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.233548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.233548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.233548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.233548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.233548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.233548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.243542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.243542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.243543 LLDP, length 82 [|LLDP] 17:25:26.243543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.243543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.243543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.243543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.243543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.243543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0612 f2b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.243543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.243543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.243543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.243543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.243543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.243543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.253541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.253541 LLDP, length 82 [|LLDP] 17:25:26.253541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.253541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.253541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061a 93d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.253542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.253542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.253542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.253542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.253542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.253542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.253542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.253542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.253542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.253542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.263539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.263539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.263539 LLDP, length 82 [|LLDP] 17:25:26.263539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.263539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.263539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0622 34f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.263539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.263540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.263540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.263540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.263540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.263540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.263540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.263540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.263540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.273541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 LLDP, length 82 [|LLDP] 17:25:26.273541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.273541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.273541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.273541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.273541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.273541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0629 d616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.273541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.273541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.273541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.273541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.273541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.273542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.283543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 LLDP, length 82 [|LLDP] 17:25:26.283544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.283544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.283544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0631 7736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.283544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.283544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.283544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.283544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.283544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.283544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.283544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.283544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.283544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.293546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.293546 LLDP, length 82 [|LLDP] 17:25:26.293546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.293546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.293546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0639 1856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.293546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.293547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.293547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.293547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.293547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.293547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.293547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.293547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.293547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.293547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.303542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 LLDP, length 82 [|LLDP] 17:25:26.303542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.303542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.303542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0640 b976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.303542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.303542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.303542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.303542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.303542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.303542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.303542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.303542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.303543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.313547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.313547 LLDP, length 82 [|LLDP] 17:25:26.313547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.313547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.313547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0648 5a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.313547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.313547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.313547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.313547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.313547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.313548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.313548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.313548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.313548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.323543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 LLDP, length 82 [|LLDP] 17:25:26.323543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.323543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.323543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.323543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.323543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.323543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064f fbb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.323543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.323543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.323543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.323543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.323543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.323544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.325140 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:26.325237 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:26.333549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.333549 LLDP, length 82 [|LLDP] 17:25:26.333549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.333549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.333549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0657 9cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.333550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.333550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.333550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.333550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.333550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.333550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.333550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.333550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.343548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.343548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.343548 LLDP, length 82 [|LLDP] 17:25:26.343548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.343548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.343548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065f 3df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.343548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.343548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.343548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.343549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.343549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.343549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.343549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.343549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.343549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.353542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 LLDP, length 82 [|LLDP] 17:25:26.353542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.353542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.353542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.353542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.353542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.353542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.353542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0666 df16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.353542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.353542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.353542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.353543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.353543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.363544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.363544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.363544 LLDP, length 82 [|LLDP] 17:25:26.363544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.363544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.363544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066e 8036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.363544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.363545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.363545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.363545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.363545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.363545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.363545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.363545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.363545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.373542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 LLDP, length 82 [|LLDP] 17:25:26.373543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.373543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.373543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0676 2156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.373543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.373543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.373543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.373543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.373543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.373543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.373543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.373543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.373543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.383542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.383542 LLDP, length 82 [|LLDP] 17:25:26.383542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.383542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.383543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067d c276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.383543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.383543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.383543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.383543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.383543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.383543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.383543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.383543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.393545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.393545 LLDP, length 82 [|LLDP] 17:25:26.393545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.393545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.393545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0685 6396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.393545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.393545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.393545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.393545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.393546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.393546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.393546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.393546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.393546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.393546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.403543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.403543 LLDP, length 82 [|LLDP] 17:25:26.403543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.403543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.403543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.403544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.403544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.403544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068d 04b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.403544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.403544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.403544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.413543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.413543 LLDP, length 82 [|LLDP] 17:25:26.413543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.413549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.413549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0694 a5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.413549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.413549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.413549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.413549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.413549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.413549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.413549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.413549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.413549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.413549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.423543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.423543 LLDP, length 82 [|LLDP] 17:25:26.423543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.423543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.423543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069c 46f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.423544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.423544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.423544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.423544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.423544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.423544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.423544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.433550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 LLDP, length 82 [|LLDP] 17:25:26.433550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.433550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.433550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.433550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.433550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.433550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.433550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a3 e816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.433550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.433551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.433551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.443541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.443541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.443541 LLDP, length 82 [|LLDP] 17:25:26.443541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.443542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.443542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ab 8936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.443542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.443542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.443542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.443542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.443542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.443542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.443542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.443542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.443542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.453542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.453542 LLDP, length 82 [|LLDP] 17:25:26.453542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.453542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.453542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b3 2a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.453543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.453543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.453543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.453543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.453543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.453543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.453543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.453543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.463540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.463540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.463540 LLDP, length 82 [|LLDP] 17:25:26.463540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.463540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.463540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ba cb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.463540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.463541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.463541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.463541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.463541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.463541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.473558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.473558 LLDP, length 82 [|LLDP] 17:25:26.473558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.473558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.473558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c2 6c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.473558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.473558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.473558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.473558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.473559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.473559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.473559 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.473559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.473559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.473559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.483547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 LLDP, length 82 [|LLDP] 17:25:26.483547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.483547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.483547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.483547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.483547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.483547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.483548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ca 0db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.483548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.483548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.483548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.493550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.493550 LLDP, length 82 [|LLDP] 17:25:26.493551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.493551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.493551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d1 aed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.493551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.493551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.493551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.493551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.493551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.493551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.493551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.493551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.493551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.493551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.503544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.503544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.503544 LLDP, length 82 [|LLDP] 17:25:26.503544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d9 4ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.503545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.503545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.503546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.513549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.513549 LLDP, length 82 [|LLDP] 17:25:26.513549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.513549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.513549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.513549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.513550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.513550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.513550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.513550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e0 f116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.513550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.513550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.513550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.523541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.523541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.523542 LLDP, length 82 [|LLDP] 17:25:26.523542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.523542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.523542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e8 9236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.523542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.523542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.523542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.523542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.523542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.523542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.523542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.523542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.523542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.533541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 LLDP, length 82 [|LLDP] 17:25:26.533541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.533541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.533541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f0 3356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.533541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.533541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.533541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.533541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.533541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.533541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.533541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.533542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.533548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.543543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.543543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.543543 LLDP, length 82 [|LLDP] 17:25:26.543543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.543543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.543543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f7 d476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.543543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.543544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.543544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.543544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.543544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.543544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.543544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.553556 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.553556 LLDP, length 82 [|LLDP] 17:25:26.553557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.553557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.553557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ff 7596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.553557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.553557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.553557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.553557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.553557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.553557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.553557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.553557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.553557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.553557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.563544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 LLDP, length 82 [|LLDP] 17:25:26.563544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.563544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.563545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.563545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.563545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.563545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0707 16b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.563545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.563545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.563545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.573542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 LLDP, length 82 [|LLDP] 17:25:26.573542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.573542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.573542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070e b7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.573542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.573542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.573542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.573542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.573543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.573543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.573543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.583565 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.583565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.583565 LLDP, length 82 [|LLDP] 17:25:26.583565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.583565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.583565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0716 58f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.583566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.583566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.583566 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.583566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.583566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.583566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.583566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.583566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.583566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.593555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 LLDP, length 82 [|LLDP] 17:25:26.593555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.593555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.593555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.593555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.593555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.593555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.593555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071d fa16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.593556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.593556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.593556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.603541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.603541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.603541 LLDP, length 82 [|LLDP] 17:25:26.603541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.603541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.603541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0725 9b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.603541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.603541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.603542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.603542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.603542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.603542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.603542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.603542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.603542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.613544 LLDP, length 82 [|LLDP] 17:25:26.613544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.613544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.613544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072d 3c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.613544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.613544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.613544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.613545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.613545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.613545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.613545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.623543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 LLDP, length 82 [|LLDP] 17:25:26.623543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.623543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.623543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0734 dd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.623543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.623543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.623543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.623543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.623543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.623543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.623543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.633560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.633560 LLDP, length 82 [|LLDP] 17:25:26.633560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.633560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.633560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073c 7e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.633560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.633561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.633561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.633561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.633561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.633561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.633561 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.633561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.633561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.633561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.643543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.643543 LLDP, length 82 [|LLDP] 17:25:26.643543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.643543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.643543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.643543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.643544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.643544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0744 1fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.643544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.643544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.643544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.653549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 LLDP, length 82 [|LLDP] 17:25:26.653550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.653550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.653550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074b c0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.653550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.653550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.653550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.653550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.653550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.653550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.653550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.663543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.663543 LLDP, length 82 [|LLDP] 17:25:26.663543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.663543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.663543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0753 61f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.663543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.663543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.663543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.663544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.663544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.663544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.663544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.673542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.673542 LLDP, length 82 [|LLDP] 17:25:26.673543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.673543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.673543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.673543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.673543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.673543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075b 0316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.673543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.673543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.673543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.683538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.683538 LLDP, length 82 [|LLDP] 17:25:26.683538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.683538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.683538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0762 a436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.683538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.683538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.683539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.683539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.683539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.683539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.683539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.683539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.683539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.683539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.693545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.693545 LLDP, length 82 [|LLDP] 17:25:26.693546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.693546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.693546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076a 4556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.693546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.693546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.693546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.693546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.693546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.693546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.693546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.693546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.703542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 LLDP, length 82 [|LLDP] 17:25:26.703543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.703543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.703543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0771 e676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.703543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.703543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.703543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.703543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.703543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.703543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.703543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.713548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.713548 LLDP, length 82 [|LLDP] 17:25:26.713548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.713548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.713548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0779 8796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.713548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.713548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.713548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.713548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.713549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.713549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.713549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.713549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.713549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.713549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.723541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 LLDP, length 82 [|LLDP] 17:25:26.723541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.723541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.723541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.723541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.723541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0781 28b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.723541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.723541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.723542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.733542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.733542 LLDP, length 82 [|LLDP] 17:25:26.733542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.733542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.733542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0788 c9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.733542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.733542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.733542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.733542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.733543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.733543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.733543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.733543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.733543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.733543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.743543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 LLDP, length 82 [|LLDP] 17:25:26.743544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.743544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.743544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0790 6af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.743544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.743544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.743544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.743544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.743544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.743544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.743544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.753541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.753541 LLDP, length 82 [|LLDP] 17:25:26.753541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.753541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.753542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.753542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.753542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.753542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.753542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.753542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0798 0c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.753542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.753542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.753542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.763542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.763542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.763542 LLDP, length 82 [|LLDP] 17:25:26.763542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.763543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.763543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079f ad36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.763543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.763543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.763543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.763543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.763543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.763543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.763543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.763543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.773542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 LLDP, length 82 [|LLDP] 17:25:26.773543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.773543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.773543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a7 4e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.773543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.773543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.773543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.773543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.773543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.773543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.773543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.773543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.773543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.783539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 LLDP, length 82 [|LLDP] 17:25:26.783540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.783540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.783540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ae ef76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.783540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.783540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.783540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.783540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.783540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.783540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.783540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.793548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.793548 LLDP, length 82 [|LLDP] 17:25:26.793548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.793548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.793548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b6 9096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.793548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.793548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.793549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.793549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.793549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.793549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.793549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.793549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.803543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.803543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.803544 LLDP, length 82 [|LLDP] 17:25:26.803544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.803544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.803544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.803544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.803544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.803544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.803544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07be 31b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.803544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.803544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.803544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.813547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 LLDP, length 82 [|LLDP] 17:25:26.813548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.813548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.813548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c5 d2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.813548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.813548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.813548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.813548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.813548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.813548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.813548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.813548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.813549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.823582 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 LLDP, length 82 [|LLDP] 17:25:26.823583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.823583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.823583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cd 73f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.823583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.823583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.823583 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.823583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.823583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.823583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.823583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.823583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.823583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.833581 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.833581 LLDP, length 82 [|LLDP] 17:25:26.833581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.833581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.833581 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.833581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.833581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.833582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.833582 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.833582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d5 1516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.833582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.833582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.833582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.843574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 LLDP, length 82 [|LLDP] 17:25:26.843574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.843574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.843574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07dc b636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.843574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.843574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.843574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.843574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.843574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.843575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.843575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.843575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.843575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.853574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 LLDP, length 82 [|LLDP] 17:25:26.853574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.853574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.853574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e4 5756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.853574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.853574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.853574 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.853574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.853574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.853574 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.853574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.853574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.853575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.863570 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.863570 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.863570 LLDP, length 82 [|LLDP] 17:25:26.863570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.863570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.863570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07eb f876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.863571 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.863571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.863571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.863571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.863571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.863571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.863571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.873569 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.873569 LLDP, length 82 [|LLDP] 17:25:26.873569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.873569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.873569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f3 9996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.873570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.873570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.873570 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.873570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.873570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.873570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.873570 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.873570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.873570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.873570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.883588 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 LLDP, length 82 [|LLDP] 17:25:26.883588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.883588 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.883588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.883588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.883588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.883588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.883588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fb 3ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.883588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.883588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.883588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.883589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.883589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.893574 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.893574 LLDP, length 82 [|LLDP] 17:25:26.893575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.893575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.893575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0802 dbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.893575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.893575 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.893575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.893575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.893575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.893575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.893575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.893575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.893575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.893575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.903549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.903549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.903549 LLDP, length 82 [|LLDP] 17:25:26.903549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.903549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.903549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080a 7cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.903550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.903550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.903550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.903550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.903550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.903550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.903550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.903550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.903550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.913549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.913549 LLDP, length 82 [|LLDP] 17:25:26.913549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.913549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.913549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.913549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.913549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.913549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.913549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.913550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0812 1e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.913550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.913550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.913550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.923542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.923542 LLDP, length 82 [|LLDP] 17:25:26.923542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.923542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.923542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0819 bf36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.923542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.923542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.923542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.923542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.923543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.923543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.923543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.923543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.923543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.933552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.933552 LLDP, length 82 [|LLDP] 17:25:26.933552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.933552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.933552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0821 6056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.933552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.933552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.933552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.933552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.933552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.933552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.933553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.933553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.933553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.933553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.943551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.943551 LLDP, length 82 [|LLDP] 17:25:26.943551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.943551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.943551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0829 0176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.943551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.943551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.943552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.943552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.943552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.943552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.943552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.943552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.953557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.953557 LLDP, length 82 [|LLDP] 17:25:26.953557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.953557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.953557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0830 a296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.953557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.953557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.953557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.953557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.953557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.953558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.953558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.953558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.953558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.953558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.963547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 LLDP, length 82 [|LLDP] 17:25:26.963547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.963547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.963547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.963547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.963547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.963547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.963547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0838 43b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.963547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.963547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.963547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.963548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.963548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.973542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.973542 LLDP, length 82 [|LLDP] 17:25:26.973542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.973542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.973542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083f e4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.973542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.973542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.973542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.973542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.973542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.973542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.973543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.973543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.973543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.973543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.983542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.983542 LLDP, length 82 [|LLDP] 17:25:26.983542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.983543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.983543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0847 85f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.983543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.983543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.983543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.983543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.983543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.983543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.983543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.983543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.983543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.983543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:26.993541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.993541 LLDP, length 82 [|LLDP] 17:25:26.993541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:26.993541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:26.993541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:26.993542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:26.993542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.993542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:26.993542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:26.993542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084f 2716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:26.993542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:26.993542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:26.993542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.003545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 LLDP, length 82 [|LLDP] 17:25:27.003545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.003545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.003545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0856 c836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.003545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.003545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.003545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.003545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.003545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.003546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.003546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.003546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.013549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 LLDP, length 82 [|LLDP] 17:25:27.013549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.013549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.013549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085e 6956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.013549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.013549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.013549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.013549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.013549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.013549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.013549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.013549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.013550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.023539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 LLDP, length 82 [|LLDP] 17:25:27.023539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.023539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.023539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0866 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.023539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.023539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.023539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.023539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.023539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.023539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.023540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.023540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.023540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.033567 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.033567 LLDP, length 82 [|LLDP] 17:25:27.033567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.033567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.033567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086d ab96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.033567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.033567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.033567 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.033567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.033567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.033567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.033568 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.033568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.033568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.033568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.043557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 LLDP, length 82 [|LLDP] 17:25:27.043557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.043557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.043557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.043557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.043557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.043557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.043558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0875 4cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.043558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.043558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.043558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.053552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.053552 LLDP, length 82 [|LLDP] 17:25:27.053552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.053552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.053552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087c edd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.053552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.053552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.053552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.053552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.053552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.053553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.053553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.053553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.053553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.053553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.063548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 LLDP, length 82 [|LLDP] 17:25:27.063548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.063548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.063548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0884 8ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.063548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.063548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.063548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.063548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.063548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.063548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.063548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.063548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.063549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.073564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.073564 LLDP, length 82 [|LLDP] 17:25:27.073564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.073564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.073564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.073565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.073565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.073565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.073565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.073565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088c 3016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.073565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.073565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.073565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.083543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.083543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.083543 LLDP, length 82 [|LLDP] 17:25:27.083543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.083543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.083544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0893 d136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.083544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.083544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.083544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.083544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.083544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.083544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.083544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.083544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.083544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 LLDP, length 82 [|LLDP] 17:25:27.093544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.093544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.093544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089b 7256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.093544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.093544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.093544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.093544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.093544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.103546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 LLDP, length 82 [|LLDP] 17:25:27.103546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.103546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.103546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a3 1376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.103546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.103546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.103546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.103546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.103546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.103546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.103547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.103547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.103547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.113552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.113552 LLDP, length 82 [|LLDP] 17:25:27.113552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.113553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.113553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08aa b496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.113553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.113553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.113553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.113553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.113553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.113553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.113553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.113553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.113553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.113553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.123546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 LLDP, length 82 [|LLDP] 17:25:27.123547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.123547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.123547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.123547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.123547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.123547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.123547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b2 55b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.123547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.123547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.123547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.133551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.133551 LLDP, length 82 [|LLDP] 17:25:27.133551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.133552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.133552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b9 f6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.133552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.133552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.133552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.133552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.133552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.133552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.133552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.133552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.133552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.133552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.143546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.143546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.143546 LLDP, length 82 [|LLDP] 17:25:27.143547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.143547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.143547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c1 97f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.143547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.143547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.143547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.143547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.143547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.143547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.143547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.143547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.143547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.153550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.153550 LLDP, length 82 [|LLDP] 17:25:27.153550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.153550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.153550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.153550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.153550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.153551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.153551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.153551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c9 3916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.153551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.153551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.153551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.163541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.163541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.163541 LLDP, length 82 [|LLDP] 17:25:27.163541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.163541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.163541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d0 da36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.163542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.163542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.163542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.163542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.163542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.163542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.163542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.173545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.173545 LLDP, length 82 [|LLDP] 17:25:27.173545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.173545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.173546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d8 7b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.173546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.173546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.173546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.173546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.173546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.173546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.173546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.173546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.173546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.173546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.183543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 LLDP, length 82 [|LLDP] 17:25:27.183543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.183543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.183543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e0 1c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.183543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.183543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.183543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.183544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.183544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.193543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.193543 LLDP, length 82 [|LLDP] 17:25:27.193543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.193543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.193543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e7 bd96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.193543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.193543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.193543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.193544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.193544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.193544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.193544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.193544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.193544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.193544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.203542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.203542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.203543 LLDP, length 82 [|LLDP] 17:25:27.203543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.203543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.203543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.203543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.203543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.203543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.203543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ef 5eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.203543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.203543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.203543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.213548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.213548 LLDP, length 82 [|LLDP] 17:25:27.213548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.213548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.213548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f6 ffd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.213548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.213548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.213548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.213549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.213549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.213549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.213549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.213549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.223550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.223550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.223550 LLDP, length 82 [|LLDP] 17:25:27.223550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.223550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.223550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fe a0f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.223550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.223551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.223551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.223551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.223551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.223551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.223551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.223551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.223551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.233557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.233557 LLDP, length 82 [|LLDP] 17:25:27.233557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.233557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.233557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.233557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.233558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.233558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.233558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.233558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0906 4216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.233558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.233558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.233558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.243545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.243545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.243545 LLDP, length 82 [|LLDP] 17:25:27.243546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.243546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.243546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090d e336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.243546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.243546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.243546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.243546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.243546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.243546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.243546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.253549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.253549 LLDP, length 82 [|LLDP] 17:25:27.253549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.253549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.253549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0915 8456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.253549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.253549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.253550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.253550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.253550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.253550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.253550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.253550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.253550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.253550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.263541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 LLDP, length 82 [|LLDP] 17:25:27.263541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.263541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.263541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091d 2576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.263541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.263541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.263541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.263541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.263541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.263541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.263541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.263542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.263542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.273549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 LLDP, length 82 [|LLDP] 17:25:27.273549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.273549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.273549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0924 c696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.273549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.273549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.273549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.273549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.273549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.273549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.273549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.273549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.273550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.283543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 LLDP, length 82 [|LLDP] 17:25:27.283543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.283543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.283543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.283543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.283543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.283543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.283543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092c 67b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.283543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.283544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.283544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.293544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 LLDP, length 82 [|LLDP] 17:25:27.293544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.293544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.293544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0934 08d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.293544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.293544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.293544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.293544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.293544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.293544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.293544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.293544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.293545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.303542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.303542 LLDP, length 82 [|LLDP] 17:25:27.303543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.303543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.303543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093b a9f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.303543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.303543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.303543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.303543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.303543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.303543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.303543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.303543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.313547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 LLDP, length 82 [|LLDP] 17:25:27.313547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.313547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.313547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.313547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.313547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.313547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0943 4b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.313547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.313548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.313548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.323546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.323546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.323546 LLDP, length 82 [|LLDP] 17:25:27.323546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.323546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.323547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094a ec36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.323547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.323547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.323547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.323547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.323547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.323547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.323547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.323547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.323547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.333552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.333552 LLDP, length 82 [|LLDP] 17:25:27.333552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.333552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.333553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0952 8d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.333553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.333553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.333553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.333553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.333553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.333553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.333553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.333553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.333553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.333553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.343544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 LLDP, length 82 [|LLDP] 17:25:27.343544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.343544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.343544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095a 2e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.343544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.343544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.343544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.343544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.343544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.343544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.343545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.343545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.343545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.345141 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:27.345244 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:27.353548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.353548 LLDP, length 82 [|LLDP] 17:25:27.353548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.353548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.353548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0961 cf96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.353548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.353548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.353548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.353548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.353549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.353549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.353549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.353549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.353549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.353549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.363548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 LLDP, length 82 [|LLDP] 17:25:27.363548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.363548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.363548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.363548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.363548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0969 70b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.363548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.363548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.363548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.363549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.363549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.373552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 LLDP, length 82 [|LLDP] 17:25:27.373553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.373553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.373553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0971 11d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.373553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.373553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.373553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.373553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.373553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.373553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.373553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.373553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.373554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.383544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.383544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.383545 LLDP, length 82 [|LLDP] 17:25:27.383545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.383545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.383545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0978 b2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.383545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.383545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.383545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.383545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.383545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.383545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.383545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.383545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.393551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.393551 LLDP, length 82 [|LLDP] 17:25:27.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.393551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.393552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.393552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.393552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0980 5416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.393552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.393552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.393552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.393552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.393552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.393552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.403543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.403543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.403543 LLDP, length 82 [|LLDP] 17:25:27.403543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.403544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.403544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0987 f536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.403544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.403544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.403544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.403544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.403544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.403544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.403544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.403544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.413555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.413555 LLDP, length 82 [|LLDP] 17:25:27.413556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.413556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.413556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098f 9656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.413556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.413556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.413556 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.413556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.413556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.413556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.413556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.413556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.413556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.413556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.423545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 LLDP, length 82 [|LLDP] 17:25:27.423546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.423546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.423546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0997 3776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.423546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.423546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.423546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.423546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.423546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.423546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.423546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.433552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.433552 LLDP, length 82 [|LLDP] 17:25:27.433552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.433552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.433552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099e d896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.433552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.433552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.433552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.433552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.433552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.433552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.433553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.433553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.443563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 LLDP, length 82 [|LLDP] 17:25:27.443563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.443563 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.443563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.443563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.443563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.443564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a6 79b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.443564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.443564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.443564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.443564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.443564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.443564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.453557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 LLDP, length 82 [|LLDP] 17:25:27.453557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.453557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.453557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ae 1ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.453557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.453557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.453557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.453557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.453557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.453557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.453558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.453558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.453558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.463544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 LLDP, length 82 [|LLDP] 17:25:27.463544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.463544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.463544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b5 bbf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.463544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.463544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.463544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.463544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.463544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.463544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.463544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.463545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.463545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.473544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 LLDP, length 82 [|LLDP] 17:25:27.473544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.473544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.473544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.473544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.473544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.473544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bd 5d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.473544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.473544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.473544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.473544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.473544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.473545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.483550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.483550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.483550 LLDP, length 82 [|LLDP] 17:25:27.483550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.483551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.483551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c4 fe36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.483551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.483551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.483551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.483551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.483551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.483551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.483551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.483551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.483551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.493563 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 LLDP, length 82 [|LLDP] 17:25:27.493564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.493564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.493564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cc 9f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.493564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.493564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.493564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.493564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.493564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.493564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.493564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.493564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.493564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.503542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.503542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.503542 LLDP, length 82 [|LLDP] 17:25:27.503542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.503542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.503543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d4 4076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.503543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.503543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.503543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.503543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.503543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.503543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.503543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.503543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.503543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.513542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 LLDP, length 82 [|LLDP] 17:25:27.513542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.513542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.513542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09db e196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.513542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.513542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.513542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.513542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.513542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.513542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.513543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.513543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.513543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.523544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 LLDP, length 82 [|LLDP] 17:25:27.523544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.523544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.523544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.523544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.523544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.523544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e3 82b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.523545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.523545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.523545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.523545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.523545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.523545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.533549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 LLDP, length 82 [|LLDP] 17:25:27.533549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.533549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.533549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09eb 23d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.533549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.533549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.533549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.533549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.533549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.533550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.533550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.533550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.533550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.543549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.543549 LLDP, length 82 [|LLDP] 17:25:27.543549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.543549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.543549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f2 c4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.543549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.543549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.543549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.543549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.543549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.543550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.543550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.543550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.543550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.543550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.553548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 LLDP, length 82 [|LLDP] 17:25:27.553548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.553548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.553548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.553548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.553548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.553548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fa 6616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.553548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.553548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.553548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.553549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.553549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.553549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.563543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.563543 LLDP, length 82 [|LLDP] 17:25:27.563543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.563543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.563543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a02 0736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.563543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.563543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.563543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.563544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.563544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.563544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.573541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.573541 LLDP, length 82 [|LLDP] 17:25:27.573542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.573542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.573542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a09 a856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.573542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.573542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.573542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.573542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.573542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.573542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.573542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.573542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.573542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.583541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 LLDP, length 82 [|LLDP] 17:25:27.583541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.583541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.583541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a11 4976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.583541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.583541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.583541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.583541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.583542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.583542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.583542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.583542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.583542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.593543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.593543 LLDP, length 82 [|LLDP] 17:25:27.593543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a18 ea96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.593544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.593544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.593544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.603545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 LLDP, length 82 [|LLDP] 17:25:27.603545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.603545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.603545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.603545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.603545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.603546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a20 8bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.603546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.603546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.603546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.603546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.603546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.603546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 LLDP, length 82 [|LLDP] 17:25:27.613544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.613544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.613544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a28 2cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.613544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.613544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.613544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.613544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.613544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.613544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.613544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.613544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.613544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.623541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.623541 LLDP, length 82 [|LLDP] 17:25:27.623541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.623542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.623542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2f cdf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.623542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.623542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.623542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.623542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.623542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.623542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.623542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.623542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.623542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.633547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.633547 LLDP, length 82 [|LLDP] 17:25:27.633547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.633548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.633548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.633548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.633548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.633548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.633548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a37 6f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.633548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.633548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.633548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.633548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.633548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.633548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.643544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 LLDP, length 82 [|LLDP] 17:25:27.643544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.643544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.643544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3f 1036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.643544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.643544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.643544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.643544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.643544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.643544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.643544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.643544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.643545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.653550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.653550 LLDP, length 82 [|LLDP] 17:25:27.653550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.653550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.653550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a46 b156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.653550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.653550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.653550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.653550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.653550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.653550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.653551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.653551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.653551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.653551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.663544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 LLDP, length 82 [|LLDP] 17:25:27.663544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.663544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.663544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4e 5276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.663544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.663544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.663544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.663544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.663544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.663544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.663545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.663545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.673549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.673549 LLDP, length 82 [|LLDP] 17:25:27.673549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.673549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.673549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a55 f396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.673549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.673549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.673549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.673549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.673549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.673550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.673550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.673550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.673550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.673550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.683542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 LLDP, length 82 [|LLDP] 17:25:27.683542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.683542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.683542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.683542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.683542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.683543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5d 94b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.683543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.683543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.683543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.683543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.683543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.683543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.693543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.693543 LLDP, length 82 [|LLDP] 17:25:27.693543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.693543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.693544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a65 35d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.693544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.693544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.693544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.693544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.693544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.693544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.693544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.693544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.693544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.693544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.703543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.703543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.703543 LLDP, length 82 [|LLDP] 17:25:27.703543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.703543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.703543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6c d6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.703543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.703544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.703544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.703544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.703544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.703544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.703544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.703544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.703544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.713552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.713552 LLDP, length 82 [|LLDP] 17:25:27.713552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.713552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.713553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.713553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.713553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.713553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.713553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a74 7816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.713553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.713553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.713553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.713553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.713553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.713553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.723546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 LLDP, length 82 [|LLDP] 17:25:27.723547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.723547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.723547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7c 1936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.723547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.723547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.723547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.723547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.723547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.723547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.723547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.723547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.723547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.733548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.733548 LLDP, length 82 [|LLDP] 17:25:27.733548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.733549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.733549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a83 ba56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.733549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.733549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.733549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.733549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.733549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.733549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.733549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.733549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.733549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.733549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.743543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 LLDP, length 82 [|LLDP] 17:25:27.743543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.743543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.743543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8b 5b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.743543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.743543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.743543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.743543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.743543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.743543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.743544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.743544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.743544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.753543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.753543 LLDP, length 82 [|LLDP] 17:25:27.753543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.753543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.753543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a92 fc96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.753543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.753543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.753543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.753543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.753543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.753544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.753544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.753544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.753544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.753544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.763541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.763541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.763541 LLDP, length 82 [|LLDP] 17:25:27.763542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.763542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.763542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.763542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.763542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.763542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9a 9db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.763542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.763542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.763542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.763542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.763542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.763542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.773549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 LLDP, length 82 [|LLDP] 17:25:27.773549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.773549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.773549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa2 3ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.773549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.773549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.773549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.773549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.773549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.773549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.773550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.773550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.773550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.783545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.783545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.783546 LLDP, length 82 [|LLDP] 17:25:27.783546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.783546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.783546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa9 dff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.783546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.783546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.783546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.783546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.783546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.783546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.783546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.783546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.793552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 LLDP, length 82 [|LLDP] 17:25:27.793552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.793552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.793552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.793552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.793552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.793552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab1 8116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.793552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.793552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.793552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.793553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.793553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.793553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.803544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 LLDP, length 82 [|LLDP] 17:25:27.803544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.803544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.803544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab9 2236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.803544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.803544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.803544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.803544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.803545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.803545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.803545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.803545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.803545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.813550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.813550 LLDP, length 82 [|LLDP] 17:25:27.813550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.813550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.813550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac0 c356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.813550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.813550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.813550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.813550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.813550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.813551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.813551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.813551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.813551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.813551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.823547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 LLDP, length 82 [|LLDP] 17:25:27.823548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.823548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.823548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac8 6476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.823548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.823548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.823548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.823548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.823548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.823548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.823548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.823548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.823549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.833545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.833545 LLDP, length 82 [|LLDP] 17:25:27.833545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.833545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.833545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad0 0596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.833545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.833546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.833546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.833546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.833546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.833546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.833546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.833546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.833546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.833546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.843544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.843544 LLDP, length 82 [|LLDP] 17:25:27.843544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.843545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.843545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.843545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.843545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.843545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad7 a6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.843545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.843545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.843545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.843545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.843545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.853550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.853550 LLDP, length 82 [|LLDP] 17:25:27.853551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.853551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.853551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adf 47d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.853551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.853551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.853551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.853551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.853551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.853551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.853551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.853551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.853551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.853551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.863539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.863539 LLDP, length 82 [|LLDP] 17:25:27.863539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.863539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.863539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae6 e8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.863539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.863540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.863540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.863540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.863540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.863540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.863540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.863540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.863540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.863540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.873583 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.873583 LLDP, length 82 [|LLDP] 17:25:27.873584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.873584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.873584 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.873584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.873584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.873584 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.873584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aee 8a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.873584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.873584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.873584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.873584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.873584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.873584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.883575 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 LLDP, length 82 [|LLDP] 17:25:27.883575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.883575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.883575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af6 2b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.883575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.883575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.883575 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.883575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.883576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.883576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.883576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.883576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.883576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.893573 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 LLDP, length 82 [|LLDP] 17:25:27.893573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.893573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.893573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afd cc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.893573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.893573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.893573 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.893573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.893573 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.893573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.893574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.893574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.893574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.903575 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.903575 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.903575 LLDP, length 82 [|LLDP] 17:25:27.903576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.903576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.903576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b05 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.903576 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.903576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.903576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.903576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.903576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.903576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.903576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.903576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.903576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.913551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.913551 LLDP, length 82 [|LLDP] 17:25:27.913551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.913551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.913551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0d 0e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.913551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.913551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.913551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.913551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.913551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.913552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.913552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.913552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.913552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.913552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.923564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 LLDP, length 82 [|LLDP] 17:25:27.923564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.923564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.923564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.923564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.923564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.923565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b14 afb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.923565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.923565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.923565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.923565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.923565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.923565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.933546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 LLDP, length 82 [|LLDP] 17:25:27.933547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.933547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.933547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1c 50d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.933547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.933547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.933547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.933547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.933547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.933547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.933547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.933547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.933547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.943546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.943546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.943546 LLDP, length 82 [|LLDP] 17:25:27.943546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.943546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.943546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b23 f1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.943546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.943547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.943547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.943547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.943547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.943547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.943547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.943547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.943547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.953560 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.953560 LLDP, length 82 [|LLDP] 17:25:27.953561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.953561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.953561 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.953561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.953561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.953561 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.953561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2b 9316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.953561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.953561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.953561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.953561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.953561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.953561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.963550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 LLDP, length 82 [|LLDP] 17:25:27.963551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.963551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.963551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b33 3436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.963551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.963551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.963551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.963551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.963551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.963551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.963551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.963551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.963552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.973547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.973547 LLDP, length 82 [|LLDP] 17:25:27.973547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.973547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.973547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3a d556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.973547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.973547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.973547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.973547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.973547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.973547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.973548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.973548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.973548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.973548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.983545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 LLDP, length 82 [|LLDP] 17:25:27.983545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.983545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.983545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b42 7676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.983545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.983545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.983545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.983545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.983545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.983545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.983545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.983545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.983546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:27.993545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.993545 LLDP, length 82 [|LLDP] 17:25:27.993545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:27.993545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:27.993545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4a 1796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:27.993545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:27.993545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:27.993545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:27.993545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:27.993545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.993546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:27.993546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:27.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:27.993546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:27.993546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.003543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.003543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.003543 LLDP, length 82 [|LLDP] 17:25:28.003543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.003543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.003544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.003544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.003544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.003544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b51 b8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.003544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.003544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.003544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.003544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.003544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.003544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.013544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.013544 LLDP, length 82 [|LLDP] 17:25:28.013544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.013544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.013544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b59 59d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.013544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.013544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.013544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.013544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.013545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.013545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.013545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.023547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.023547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.023548 LLDP, length 82 [|LLDP] 17:25:28.023548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.023548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.023548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b60 faf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.023548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.023548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.023548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.023548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.023548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.023548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.023548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.023548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.023548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.033548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 LLDP, length 82 [|LLDP] 17:25:28.033548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.033548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.033548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.033548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.033548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.033548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b68 9c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.033549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.033549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.033549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.033549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.033549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.033549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.043564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 LLDP, length 82 [|LLDP] 17:25:28.043564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.043564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.043564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b70 3d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.043564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.043564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.043564 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.043564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.043564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.043565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.043565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.043565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.043565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.053548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.053548 LLDP, length 82 [|LLDP] 17:25:28.053548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.053548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.053548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b77 de56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.053548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.053548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.053548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.053548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.053548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.053549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.053549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.053549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.053549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.053549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.063542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.063542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.063543 LLDP, length 82 [|LLDP] 17:25:28.063543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.063543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.063543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7f 7f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.063543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.063543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.063543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.063543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.063543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.063543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.063543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.063543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.063543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.073546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.073546 LLDP, length 82 [|LLDP] 17:25:28.073546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.073546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.073546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b87 2096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.073546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.073546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.073546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.073547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.073547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.073547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.073547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.073547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.073547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.073547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.083547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 LLDP, length 82 [|LLDP] 17:25:28.083547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.083547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.083547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.083547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.083547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8e c1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.083547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.083547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.083547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.083548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.083548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 LLDP, length 82 [|LLDP] 17:25:28.093544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.093544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.093544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b96 62d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.093544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.093544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.093544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.093544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.093544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.093544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.103541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 LLDP, length 82 [|LLDP] 17:25:28.103541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.103541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.103541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9e 03f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.103541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.103541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.103541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.103541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.103541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.103541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.103541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.103542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.103542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.113541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 LLDP, length 82 [|LLDP] 17:25:28.113542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.113542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.113542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.113542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.113542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.113542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba5 a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.113542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.113542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.113542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.113542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.113542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.113542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.123543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 LLDP, length 82 [|LLDP] 17:25:28.123543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.123543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.123543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bad 4636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.123543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.123543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.123543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.123543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.123543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.123544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.123544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.123544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.133542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 LLDP, length 82 [|LLDP] 17:25:28.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb4 e756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.133543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.133544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.143544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.143544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.143544 LLDP, length 82 [|LLDP] 17:25:28.143544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.143544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.143545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbc 8876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.143545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.143545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.143545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.143545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.143545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.143545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.143545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.143545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.143545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.153542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.153542 LLDP, length 82 [|LLDP] 17:25:28.153542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.153543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.153543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc4 2996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.153543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.153543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.153543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.153543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.153543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.153543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.153543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.153543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.153543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.153543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.163542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 LLDP, length 82 [|LLDP] 17:25:28.163542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.163542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.163542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.163542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.163542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.163543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcb cab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.163543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.163543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.163543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.163543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.163543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.163543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.173543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.173543 LLDP, length 82 [|LLDP] 17:25:28.173543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.173543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.173543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd3 6bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.173543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.173543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.173544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.173544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.173544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.173544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.173544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.173544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.173544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.173544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.183542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.183542 LLDP, length 82 [|LLDP] 17:25:28.183542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.183542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.183542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdb 0cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.183542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.183543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.183543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.183543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.183543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.183543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.183543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.183543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.183543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.193541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.193541 LLDP, length 82 [|LLDP] 17:25:28.193541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.193541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.193541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.193541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.193541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.193541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.193542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be2 ae16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.193542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.193542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.193542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.193542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.193542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.193542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.203545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 LLDP, length 82 [|LLDP] 17:25:28.203546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.203546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.203546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bea 4f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.203546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.203546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.203546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.203546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.203546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.203546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.203546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.213547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 LLDP, length 82 [|LLDP] 17:25:28.213547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.213547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.213547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf1 f056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.213547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.213547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.213547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.213547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.213547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.213547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.213548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.213548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.213548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.223544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.223544 LLDP, length 82 [|LLDP] 17:25:28.223545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.223545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.223545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf9 9176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.223545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.223545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.223545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.223545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.223545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.223545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.223545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.223545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.223545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.223545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.233542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.233542 LLDP, length 82 [|LLDP] 17:25:28.233542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.233542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.233542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c01 3296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.233542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.233543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.233543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.233543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.233543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.233543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.233543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.233543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.243545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.243545 LLDP, length 82 [|LLDP] 17:25:28.243545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.243545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.243545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.243546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.243546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.243546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c08 d3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.243546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.243546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.243546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.243546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.243546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.243546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.253542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.253542 LLDP, length 82 [|LLDP] 17:25:28.253542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.253542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.253542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c10 74d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.253542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.253542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.253543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.253543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.253543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.253543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.253543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.253543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.253543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.253543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.263541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.263541 LLDP, length 82 [|LLDP] 17:25:28.263542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.263542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.263542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c18 15f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.263542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.263542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.263542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.263542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.263542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.263542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.263542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.263542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.263542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.263542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.273543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.273543 LLDP, length 82 [|LLDP] 17:25:28.273543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.273543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.273543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.273543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.273543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.273543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.273544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1f b716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.273544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.273544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.273544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.273544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.273544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.273544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.283541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.283541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.283541 LLDP, length 82 [|LLDP] 17:25:28.283541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.283541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.283541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c27 5836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.283541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.283541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.283541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.283542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.283542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.283542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.283542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.283542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.283542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.293542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 LLDP, length 82 [|LLDP] 17:25:28.293542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.293542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.293542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2e f956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.293542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.293542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.293542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.293542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.293542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.293542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.293542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.293542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.293543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.303565 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 LLDP, length 82 [|LLDP] 17:25:28.303565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.303565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.303565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c36 9a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.303565 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.303565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.303565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.303565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.303565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.303565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.303565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.303566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.303566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.313548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.313548 LLDP, length 82 [|LLDP] 17:25:28.313548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.313548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.313548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3e 3b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.313548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.313548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.313548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.313548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.313549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.313549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.313549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.313549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.313549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.313549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.323548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.323548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.323548 LLDP, length 82 [|LLDP] 17:25:28.323549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.323549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.323549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.323549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.323549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.323549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c45 dcb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.323549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.323549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.323549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.323549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.323549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.323549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.333546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.333546 LLDP, length 82 [|LLDP] 17:25:28.333546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.333546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.333546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4d 7dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.333546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.333546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.333547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.333547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.333547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.333547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.333547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.333547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.333547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.333547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.343550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 LLDP, length 82 [|LLDP] 17:25:28.343550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.343550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.343550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c55 1ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.343550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.343550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.343550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.343550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.343550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.343550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.343550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.343550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.343551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.353544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 LLDP, length 82 [|LLDP] 17:25:28.353544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.353544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.353544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.353544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.353544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.353544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5c c016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.353545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.353545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.353545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.353545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.353545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.353545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.363542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 LLDP, length 82 [|LLDP] 17:25:28.363543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.363543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.363543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c64 6136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.363543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.363543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.363543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.363543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.363543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.363543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.363543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.363543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.373555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.373555 LLDP, length 82 [|LLDP] 17:25:28.373555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.373617 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:28.373555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.373555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6c 0256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.373555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.373555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.373555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.373556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.373556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.373556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.373556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.373556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.373556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.373556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.373738 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:28.383540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.383540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.383540 LLDP, length 82 [|LLDP] 17:25:28.383540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.383540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.383541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c73 a376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.383541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.383541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.383541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.383541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.383541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.383541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.383541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.393550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 LLDP, length 82 [|LLDP] 17:25:28.393551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.393551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.393551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7b 4496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.393551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.393551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.393551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.393551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.393551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.393551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.393551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.393551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.393551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.403547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 LLDP, length 82 [|LLDP] 17:25:28.403547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.403547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.403547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.403547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.403547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.403547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.403547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c82 e5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.403547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.403548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.403548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.413545 LLDP, length 82 [|LLDP] 17:25:28.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8a 86d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.413546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.413546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.413546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.413546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.413546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.413546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.423545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.423545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.423545 LLDP, length 82 [|LLDP] 17:25:28.423545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.423546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.423546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c92 27f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.423546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.423546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.423546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.423546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.423546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.423546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.423546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.423546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.433545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.433545 LLDP, length 82 [|LLDP] 17:25:28.433546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.433546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.433546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.433546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.433546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.433546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.433546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.433546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c99 c916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.433546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.433546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.433546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.443544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.443544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.443544 LLDP, length 82 [|LLDP] 17:25:28.443544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.443544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.443545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca1 6a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.443545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.443545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.443545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.443545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.443545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.443545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.443545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.443545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.443545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.453542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.453542 LLDP, length 82 [|LLDP] 17:25:28.453543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.453543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.453543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca9 0b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.453543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.453543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.453543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.453543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.453543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.453543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.453543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.453543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.453543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.463542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.463542 LLDP, length 82 [|LLDP] 17:25:28.463542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.463542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.463542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb0 ac76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.463542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.463543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.463543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.463543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.463543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.463543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.463543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.463543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.473542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.473542 LLDP, length 82 [|LLDP] 17:25:28.473542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.473542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.473542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb8 4d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.473542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.473542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.473542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.473543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.473543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.473543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.473543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.473543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.473543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.473543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.483539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.483539 LLDP, length 82 [|LLDP] 17:25:28.483539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.483540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.483540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.483540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.483540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.483540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.483540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.483540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbf eeb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.483540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.483540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.483540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.493543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.493543 LLDP, length 82 [|LLDP] 17:25:28.493543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.493543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.493543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc7 8fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.493543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.493543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.493543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.493543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.493543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.493544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.493544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.493544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.493544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.493544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.503545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.503545 LLDP, length 82 [|LLDP] 17:25:28.503545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccf 30f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.503546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.503546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.503546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.503546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.503546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.513547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 LLDP, length 82 [|LLDP] 17:25:28.513547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.513547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.513547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.513547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.513547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.513547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.513547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd6 d216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.513547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.513547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.513547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.523545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.523545 LLDP, length 82 [|LLDP] 17:25:28.523545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.523545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.523545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cde 7336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.523545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.523545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.523545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.523545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.523546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.523546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.523546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.523546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.523546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.523546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.533545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.533545 LLDP, length 82 [|LLDP] 17:25:28.533545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.533545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.533545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce6 1456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.533545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.533545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.533545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.533546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.533546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.533546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.533546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.533546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.533546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.533546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.543545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 LLDP, length 82 [|LLDP] 17:25:28.543545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.543545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.543545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ced b576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.543545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.543545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.543545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.543546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.543546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.543546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.543546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.553543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.553543 LLDP, length 82 [|LLDP] 17:25:28.553543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.553543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.553544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf5 5696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.553544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.553544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.553544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.553544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.553544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.553544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.553544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.553544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.553544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.553544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.563544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 LLDP, length 82 [|LLDP] 17:25:28.563544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.563544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.563544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.563544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.563544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.563544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfc f7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.563544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.563544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.563545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.573546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.573546 LLDP, length 82 [|LLDP] 17:25:28.573546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.573547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.573547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d04 98d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.573547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.573547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.573547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.573547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.573547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.573547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.573547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.573547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.573547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.573547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.583542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.583542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.583542 LLDP, length 82 [|LLDP] 17:25:28.583543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.583543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.583543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0c 39f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.583543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.583543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.583543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.583543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.583543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.583543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.583543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.583543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.583543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.593543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.593543 LLDP, length 82 [|LLDP] 17:25:28.593543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.593543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.593543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.593543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d13 db16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.593544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.603551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 LLDP, length 82 [|LLDP] 17:25:28.603551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.603551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.603551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1b 7c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.603551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.603551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.603551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.603551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.603551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.603552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.603552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.603552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.603552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.613545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.613545 LLDP, length 82 [|LLDP] 17:25:28.613545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.613546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.613546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d23 1d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.613546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.613546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.613546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.613546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.613546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.613546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.613546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.613546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.613546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.613546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.623546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 LLDP, length 82 [|LLDP] 17:25:28.623546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.623546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.623546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2a be76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.623546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.623546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.623547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.623547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.623547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.633545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.633545 LLDP, length 82 [|LLDP] 17:25:28.633545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.633546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.633546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d32 5f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.633546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.633546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.633546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.633546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.633546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.633546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.633546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.633546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.633546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.633546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.643545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.643545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.643545 LLDP, length 82 [|LLDP] 17:25:28.643546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.643546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.643546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.643546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.643546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.643546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.643546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3a 00b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.643546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.643546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.643546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.653545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.653545 LLDP, length 82 [|LLDP] 17:25:28.653545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.653545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.653545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d41 a1d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.653545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.653545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.653545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.653546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.653546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.653546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.653546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.653546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.653546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.653546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.663542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 LLDP, length 82 [|LLDP] 17:25:28.663543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.663543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.663543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d49 42f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.663543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.663543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.663543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.663543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.663543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.663543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.663543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.663543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.663544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.673543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 LLDP, length 82 [|LLDP] 17:25:28.673543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.673543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.673543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.673543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.673543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.673543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d50 e416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.673543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.673544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.673544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.683544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.683544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.683545 LLDP, length 82 [|LLDP] 17:25:28.683545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.683545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.683545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d58 8536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.683545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.683545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.683545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.683545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.683545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.683545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.683545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.683545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.683545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.693544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.693544 LLDP, length 82 [|LLDP] 17:25:28.693544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.693545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.693545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d60 2656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.693545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.693545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.693545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.693545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.693545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.693545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.693545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.693545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.703546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 LLDP, length 82 [|LLDP] 17:25:28.703546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.703546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.703546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d67 c776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.703546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.703547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.713555 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.713555 LLDP, length 82 [|LLDP] 17:25:28.713555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.713555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.713555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6f 6896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.713555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.713555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.713555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.713555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.713555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.713555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.713556 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.713556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.713556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.713556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.723549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 LLDP, length 82 [|LLDP] 17:25:28.723549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.723549 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.723549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.723549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.723550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.723550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d77 09b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.723550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.723550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.723550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.733546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 LLDP, length 82 [|LLDP] 17:25:28.733546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.733546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.733546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7e aad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.733546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.733546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.733546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.733546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.733546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.733546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.733546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.733547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.733547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.743546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.743546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.743547 LLDP, length 82 [|LLDP] 17:25:28.743547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.743547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.743547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d86 4bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.743547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.743547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.743547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.743547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.743547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.743547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.743547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.743547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.743547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.753544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.753544 LLDP, length 82 [|LLDP] 17:25:28.753544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.753545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.753545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.753545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.753545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.753545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.753545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.753545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8d ed16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.753545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.753545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.753545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.763545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.763545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.763545 LLDP, length 82 [|LLDP] 17:25:28.763545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.763545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.763546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d95 8e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.763546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.763546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.763546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.763546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.763546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.763546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.763546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.763546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.763546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.773543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.773543 LLDP, length 82 [|LLDP] 17:25:28.773543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.773543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.773543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9d 2f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.773544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.773544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.773544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.773544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.773544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.773544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.773544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.773544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.773544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.773544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.783550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.783550 LLDP, length 82 [|LLDP] 17:25:28.783550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.783550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.783550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da4 d076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.783550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.783550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.783550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.783550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.783551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.783551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.783551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.783551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.793543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.793543 LLDP, length 82 [|LLDP] 17:25:28.793543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.793543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.793543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dac 7196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.793543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.793543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.793543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.793543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.793543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.793544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.793544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.793544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.793544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.793544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.803558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.803558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.803558 LLDP, length 82 [|LLDP] 17:25:28.803558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.803558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.803559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.803559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.803559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.803559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.803559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db4 12b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.803559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.803559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.803559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.813557 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.813557 LLDP, length 82 [|LLDP] 17:25:28.813557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.813557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.813557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbb b3d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.813557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.813557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.813557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.813557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.813558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.813558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.813558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.813558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.813558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.813558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.823558 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 LLDP, length 82 [|LLDP] 17:25:28.823558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.823558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.823558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc3 54f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.823558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.823558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.823558 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.823558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.823558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.823558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.823559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.823559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.823559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.833550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 LLDP, length 82 [|LLDP] 17:25:28.833550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.833550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.833550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.833550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.833550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.833550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.833550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dca f616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.833550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.833551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.833551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.843544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.843544 LLDP, length 82 [|LLDP] 17:25:28.843544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.843544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.843544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd2 9736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.843545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.843545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.843545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.843545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.843545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.843545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.843545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.843545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.843545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.853544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.853544 LLDP, length 82 [|LLDP] 17:25:28.853544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.853544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.853544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dda 3856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.853544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.853544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.853544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.853544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.853544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.853544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.853545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.853545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.853545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.853545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.863544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 LLDP, length 82 [|LLDP] 17:25:28.863544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.863544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.863544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de1 d976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.863544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.863544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.863544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.863544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.863544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.863544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.863544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.863545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.863545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.873546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.873546 LLDP, length 82 [|LLDP] 17:25:28.873547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.873547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.873547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de9 7a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.873547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.873547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.873547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.873547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.873547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.873547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.873547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.873547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.873547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.873547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.883546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 LLDP, length 82 [|LLDP] 17:25:28.883547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.883547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.883547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.883547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.883547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.883547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.883547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df1 1bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.883547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.883547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.883547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.893542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.893542 LLDP, length 82 [|LLDP] 17:25:28.893543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.893543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.893543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df8 bcd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.893543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.893543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.893543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.893543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.893543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.893543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.893543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.893543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.893543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.893543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.903552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.903552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.903552 LLDP, length 82 [|LLDP] 17:25:28.903552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.903552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.903552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e00 5df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.903552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.903552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.903553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.903553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.903553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.903553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.903553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.903553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.903553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.913547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.913547 LLDP, length 82 [|LLDP] 17:25:28.913547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.913548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.913548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.913548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.913548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.913548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.913548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.913548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e07 ff16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.913548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.913548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.913548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.923543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.923543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.923543 LLDP, length 82 [|LLDP] 17:25:28.923543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.923543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.923543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0f a036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.923543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.923543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.923543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.923544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.923544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.923544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.923544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.923544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.923544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.933542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.933542 LLDP, length 82 [|LLDP] 17:25:28.933542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.933542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.933542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e17 4156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.933542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.933542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.933542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.933542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.933542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.933542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.933542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.933543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.933543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.933543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.943542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 LLDP, length 82 [|LLDP] 17:25:28.943542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.943542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.943542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1e e276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.943542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.943542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.943542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.943542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.943543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.943543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.943543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.953541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.953541 LLDP, length 82 [|LLDP] 17:25:28.953542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.953542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.953542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e26 8396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.953542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.953542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.953542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.953542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.953542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.953542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.953542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.953542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.953542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.953542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.963543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 LLDP, length 82 [|LLDP] 17:25:28.963543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.963543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.963543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.963543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.963543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.963543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2e 24b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.963544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.963544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.963544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.973545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 LLDP, length 82 [|LLDP] 17:25:28.973545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.973545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.973545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e35 c5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.973545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.973545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.973545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.973545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.973545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.973545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.973546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.973546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.973546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.983545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.983545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.983545 LLDP, length 82 [|LLDP] 17:25:28.983545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.983545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.983545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3d 66f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.983546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.983546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.983546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.983546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.983546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.983546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.983546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.983546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.983546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:28.993545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.993545 LLDP, length 82 [|LLDP] 17:25:28.993546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:28.993546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:28.993546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:28.993546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:28.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.993546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:28.993546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:28.993546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e45 0816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:28.993546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:28.993546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:28.993546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.003545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.003545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.003545 LLDP, length 82 [|LLDP] 17:25:29.003546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.003546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.003546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4c a936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.003546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.003546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.003546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.003546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.003546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.003546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.003546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.003546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.013545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.013545 LLDP, length 82 [|LLDP] 17:25:29.013545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.013545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.013545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e54 4a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.013545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.013545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.013545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.013545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.013545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.013545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.013546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.013546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.013546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.023544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 LLDP, length 82 [|LLDP] 17:25:29.023544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.023544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.023544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5b eb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.023544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.023544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.023544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.023545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.023545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.023545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.033544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.033544 LLDP, length 82 [|LLDP] 17:25:29.033544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.033544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.033544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e63 8c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.033544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.033544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.033544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.033544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.033544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.033545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.033545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.033545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.033545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.033545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.043545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 LLDP, length 82 [|LLDP] 17:25:29.043545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.043545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.043545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.043545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.043546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.043546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.043546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6b 2db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.043546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.043546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.043546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.053547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.053547 LLDP, length 82 [|LLDP] 17:25:29.053547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.053547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.053547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e72 ced6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.053547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.053547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.053547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.053547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.053547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.053547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.053548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.053548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.053548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.053548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.063545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.063545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.063545 LLDP, length 82 [|LLDP] 17:25:29.063545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.063545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.063546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7a 6ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.063546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.063546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.063546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.063546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.063546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.063546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.063546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.063546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.063546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.073553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.073553 LLDP, length 82 [|LLDP] 17:25:29.073553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.073553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.073553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.073553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.073553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.073553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.073553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.073554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e82 1116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.073554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.073554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.073554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.083546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.083546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.083546 LLDP, length 82 [|LLDP] 17:25:29.083546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.083546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.083547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e89 b236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.083547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.083547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.083547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.083547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.083547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.083547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.083547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.083547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.093544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 LLDP, length 82 [|LLDP] 17:25:29.093545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.093545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.093545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e91 5356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.093545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.093545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.093545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.093545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.093545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.093545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.093545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.093545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.093545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.103543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.103543 LLDP, length 82 [|LLDP] 17:25:29.103543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.103543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.103543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e98 f476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.103543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.103544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.103544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.103544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.103544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.103544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.103544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.113546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.113546 LLDP, length 82 [|LLDP] 17:25:29.113546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.113546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.113546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea0 9596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.113546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.113546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.113546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.113547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.113547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.113547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.113547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.113547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.113547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.113547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.123543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 LLDP, length 82 [|LLDP] 17:25:29.123543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.123543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.123543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.123543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.123543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.123543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea8 36b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.123543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.123543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.123544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.133542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.133542 LLDP, length 82 [|LLDP] 17:25:29.133543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.133543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.133543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eaf d7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.133543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.133543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.133543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.133543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.133543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.133543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.133543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.133543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.133543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.143539 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.143539 LLDP, length 82 [|LLDP] 17:25:29.143540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.143540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.143540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb7 78f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.143540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.143540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.143540 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.143540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.143540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.143540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.143540 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.143540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.143540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.143540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.153552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.153552 LLDP, length 82 [|LLDP] 17:25:29.153552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.153552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.153552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.153552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.153552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.153553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.153553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.153553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebf 1a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.153553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.153553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.153553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.163564 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.163564 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.163564 LLDP, length 82 [|LLDP] 17:25:29.163565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.163565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.163565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec6 bb36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.163565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.163565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.163565 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.163565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.163565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.163565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.163565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.163565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.163565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.173556 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.173556 LLDP, length 82 [|LLDP] 17:25:29.173556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.173557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.173557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ece 5c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.173557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.173557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.173557 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.173557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.173557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.173557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.173557 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.173557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.173557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.173557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.183544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.183544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.183544 LLDP, length 82 [|LLDP] 17:25:29.183545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.183545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.183545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed5 fd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.183545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.183545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.183545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.183545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.183545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.183545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.183545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.193546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.193546 LLDP, length 82 [|LLDP] 17:25:29.193546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.193546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.193546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edd 9e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.193546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.193546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.193546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.193546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.193546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.193547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.193547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.193547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.193547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.193547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.203546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 LLDP, length 82 [|LLDP] 17:25:29.203546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.203546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.203546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.203546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.203546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.203546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee5 3fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.203546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.203546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.203547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.203547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.203547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.213543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 LLDP, length 82 [|LLDP] 17:25:29.213543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.213543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.213543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eec e0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.213543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.213543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.213543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.213543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.213543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.213543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.213543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.213544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.213544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.223542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.223542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.223542 LLDP, length 82 [|LLDP] 17:25:29.223542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.223543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.223543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef4 81f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.223543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.223543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.223543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.223543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.223543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.223543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.223543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.223543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.223543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.233543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.233543 LLDP, length 82 [|LLDP] 17:25:29.233543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.233543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.233543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.233543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.233543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.233543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.233544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efc 2316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.233544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.233544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.233544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.243540 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 LLDP, length 82 [|LLDP] 17:25:29.243541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.243541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.243541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f03 c436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.243541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.243541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.243541 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.243541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.243541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.243541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.243541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.243541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.243541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.253545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.253545 LLDP, length 82 [|LLDP] 17:25:29.253545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.253545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.253545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0b 6556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.253545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.253545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.253545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.253545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.253546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.253546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.253546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.253546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.253546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.253546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.263542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.263542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.263542 LLDP, length 82 [|LLDP] 17:25:29.263542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.263543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.263543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f13 0676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.263543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.263543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.263543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.263543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.263543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.263543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.263543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.273551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.273551 LLDP, length 82 [|LLDP] 17:25:29.273551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.273551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.273551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1a a796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.273551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.273551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.273552 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.273552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.273552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.273552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.273552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.273552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.273552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.273552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.283546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 LLDP, length 82 [|LLDP] 17:25:29.283546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.283546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.283546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.283546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.283546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.283546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.283547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f22 48b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.283547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.283547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.283547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.293544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.293544 LLDP, length 82 [|LLDP] 17:25:29.293544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.293544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.293545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f29 e9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.293545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.293545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.293545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.293545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.293545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.293545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.293545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.293545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.293545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.293545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.303543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 LLDP, length 82 [|LLDP] 17:25:29.303543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.303543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.303543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f31 8af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.303543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.303543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.303543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.303543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.303544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.303544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.303544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.303544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.303544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.313543 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.313543 LLDP, length 82 [|LLDP] 17:25:29.313543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.313544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.313544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.313544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.313544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.313544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.313544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.313544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f39 2c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.313544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.313544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.313544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.323541 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.323541 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.323541 LLDP, length 82 [|LLDP] 17:25:29.323541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.323541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.323541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f40 cd36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.323541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.323541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.323542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.323542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.323542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.323542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.323542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.323542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.323542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.333549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.333549 LLDP, length 82 [|LLDP] 17:25:29.333549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.333549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.333550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f48 6e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.333550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.333550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.333550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.333550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.333550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.333550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.333550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.333550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.333550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.343550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 LLDP, length 82 [|LLDP] 17:25:29.343550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.343550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.343550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f50 0f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.343550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.343550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.343551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.343551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.343551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.343551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.343551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.353554 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.353554 LLDP, length 82 [|LLDP] 17:25:29.353554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.353554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.353555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f57 b096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.353555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.353555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.353555 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.353555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.353555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.353555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.353555 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.353555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.353555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.353555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.363548 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 LLDP, length 82 [|LLDP] 17:25:29.363548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.363548 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.363548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.363548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.363548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.363548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5f 51b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.363548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.363548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.363549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.363549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.363549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.373550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.373550 LLDP, length 82 [|LLDP] 17:25:29.373550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.373550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.373550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f66 f2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.373550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.373550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.373550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.373550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.373551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.373551 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.373551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.373551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.373551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.373551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.383552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 LLDP, length 82 [|LLDP] 17:25:29.383553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.383553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.383553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6e 93f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.383553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.383553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.383553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.383553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.383553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.383553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.383553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.383553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.383553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.393136 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:29.393238 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 17:25:29.393538 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.393538 LLDP, length 82 [|LLDP] 17:25:29.393538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.393538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.393539 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.393539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.393539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.393539 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.393539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f76 3516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.393539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.393539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.393539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.393539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.393539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.393539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.403547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.403547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.403547 LLDP, length 82 [|LLDP] 17:25:29.403547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.403547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.403547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7d d636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.403547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.403547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.403547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.403548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.403548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.403548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.403548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.403548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.403548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.413545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 LLDP, length 82 [|LLDP] 17:25:29.413545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.413545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.413545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f85 7756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.413545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.413545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.413545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.413545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.413545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.413545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.413546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.413546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.413546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.423544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 LLDP, length 82 [|LLDP] 17:25:29.423544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.423544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.423544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8d 1876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.423544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.423544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.423544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.423544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.423544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.423545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.423545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.423545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.433553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 LLDP, length 82 [|LLDP] 17:25:29.433553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.433553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.433553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f94 b996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.433553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.433553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.433553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.433553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.433553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.433553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.433554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.433554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.433554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.443545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 LLDP, length 82 [|LLDP] 17:25:29.443545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.443545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.443545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.443546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.443546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.443546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9c 5ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.443546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.443546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.443546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.443546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.443546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.443546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.453551 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.453551 LLDP, length 82 [|LLDP] 17:25:29.453551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.453551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.453551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa3 fbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.453551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.453551 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.453551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.453551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.453552 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.453552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.453552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.453552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.453552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.453552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.463544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.463544 LLDP, length 82 [|LLDP] 17:25:29.463544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.463544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.463545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fab 9cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.463545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.463545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.463545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.463545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.463545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.463545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.463545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.463545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.463545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.463545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.473547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 LLDP, length 82 [|LLDP] 17:25:29.473547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.473547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.473547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.473547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.473547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.473547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb3 3e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.473547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.473548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.473548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.473548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.473548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.473548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.483545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 LLDP, length 82 [|LLDP] 17:25:29.483546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.483546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.483546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fba df36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.483546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.483546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.483546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.483546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.483546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.483546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.483546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.483546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.483546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.493545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.493545 LLDP, length 82 [|LLDP] 17:25:29.493545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.493546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.493546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc2 8056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.493546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.493546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.493546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.493546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.493546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.493546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.493546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.493546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.493546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.493546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.503544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.503544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.503545 LLDP, length 82 [|LLDP] 17:25:29.503545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.503545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.503545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fca 2176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.503545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.503545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.503545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.503545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.503545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.503545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.503545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.503545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.513545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.513545 LLDP, length 82 [|LLDP] 17:25:29.513545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.513545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.513546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd1 c296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.513546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.513546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.513546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.513546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.513546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.513546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.513546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.513546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.513546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.523542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.523542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.523542 LLDP, length 82 [|LLDP] 17:25:29.523542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.523542 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.523543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.523543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.523543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.523543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd9 63b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.523543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.523543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.523543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.523543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.523543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.523543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.533544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 LLDP, length 82 [|LLDP] 17:25:29.533544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.533544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.533544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe1 04d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.533544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.533544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.533544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.533544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.533544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.533545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.533545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.533545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.533545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.543545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 LLDP, length 82 [|LLDP] 17:25:29.543545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.543545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.543545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe8 a5f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.543545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.543545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.543545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.543545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.543545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.543545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.543546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.543546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.543546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.553550 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 LLDP, length 82 [|LLDP] 17:25:29.553550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.553550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.553550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.553550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.553550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.553550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff0 4716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.553550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.553550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.553550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.553550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.553550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.553551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.563545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 LLDP, length 82 [|LLDP] 17:25:29.563546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.563546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.563546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff7 e836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.563546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.563546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.563546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.563546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.563546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.563546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.563546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.563546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.563547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.573549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.573549 LLDP, length 82 [|LLDP] 17:25:29.573549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.573550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.573550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fff 8956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.573550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.573550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.573550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.573550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.573550 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.573550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.573550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.573550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.583553 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.583553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.583553 LLDP, length 82 [|LLDP] 17:25:29.583553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.583553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.583553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1007 2a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.583553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.583554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.583554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.583554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.583554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.583554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.583554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.583554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.583554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.593544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 LLDP, length 82 [|LLDP] 17:25:29.593544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.593544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.593544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100e cb96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.593544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.593544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.593544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.593544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.593544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.593544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.593544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.593545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.603544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 LLDP, length 82 [|LLDP] 17:25:29.603544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.603544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.603544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.603544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.603545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.603545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1016 6cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.603545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.603545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.603545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.603545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.603545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.603545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.613544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.613544 LLDP, length 82 [|LLDP] 17:25:29.613545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.613545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.613545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101e 0dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.613545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.613545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.613545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.613545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.613545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.613545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.613545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.613545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.623546 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 LLDP, length 82 [|LLDP] 17:25:29.623546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.623546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.623546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1025 aef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.623546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.623546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.623546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.623546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.623546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.623547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.623547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.623547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.623547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.633544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 LLDP, length 82 [|LLDP] 17:25:29.633544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.633544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.633544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.633544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.633544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.633544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102d 5016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.633544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.633545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.633545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.633545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.633545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.633545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.643542 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.643542 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.643542 LLDP, length 82 [|LLDP] 17:25:29.643543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.643543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.643543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1034 f136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.643543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.643543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.643543 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.643543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.643543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.643543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.643543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.643543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.653552 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.653552 LLDP, length 82 [|LLDP] 17:25:29.653552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.653552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.653552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103c 9256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.653552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.653553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.653553 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.653553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.653553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.653553 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.653553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.653553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.653553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.653553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.663544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.663544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.663544 LLDP, length 82 [|LLDP] 17:25:29.663544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.663544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.663544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1044 3376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.663545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.663545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.663545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.663545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.663545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.663545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.663545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.663545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.663545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.673544 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 LLDP, length 82 [|LLDP] 17:25:29.673544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.673544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.673544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104b d496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.673544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.673544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.673544 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.673544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.673544 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.673544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.673544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.673544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.673545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.683547 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 LLDP, length 82 [|LLDP] 17:25:29.683547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.683547 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.683547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.683547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.683547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.683547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1053 75b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.683547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.683547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.683547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.683548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.683548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.683548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.693545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.693545 LLDP, length 82 [|LLDP] 17:25:29.693545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.693545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.693545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105b 16d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.693545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.693545 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.693545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.693545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.693546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.693546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.693546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.693546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.693546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.693546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.703545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.703545 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.703545 LLDP, length 82 [|LLDP] 17:25:29.703545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.703545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.703545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1062 b7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.703545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.703546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.703546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.703546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.703546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.703546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.703546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.703546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.713545 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.713545 LLDP, length 82 [|LLDP] 17:25:29.713545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.713545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.713546 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.713546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.713546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.713546 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.713546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106a 5916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.713546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.713546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.713546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.713546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.713546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.713546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:29.723549 IP 1.1.1.2.61719 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.723549 IP 1.1.1.2.58454 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:25:29.723550 LLDP, length 82 [|LLDP] 17:25:29.723550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:25:29.723550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:25:29.723550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1071 fa36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:25:29.723550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:25:29.723550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:25:29.723550 IP 192.168.1.1.9801 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:25:29.723550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:25:29.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.723550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:25:29.723550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:25:29.723550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:25:29.723550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:25:30.417141 ARP, Request who-has 1.1.1.2 tell 100.1.1.253, length 28 17:25:30.417250 ARP, Reply 1.1.1.2 is-at 00:11:01:00:00:01, length 50 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6653 packets captured 6653 packets received by filter 0 packets dropped by kernel 886 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:25:38 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":226,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:25:39 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:25:40 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":226,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif 245.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2229' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.2, port 43852 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:25:40 PM UTC INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg2... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0f280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI BridgedLLDP SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI LACPDU SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4ToMe SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Request_BC SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Reply SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Broadcast SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_SSH SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_Telnet SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_ICMP_Request SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DCHP_BC SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Reserved_MC SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_OSPFIGP SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_VRRP SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_IGMP SIP-DIP N/A Tx 437 Rx 437 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_BGP SIP-DIP N/A Tx 437 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG agg2:Logger.py:156 17:29:30.437969 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.437969 LLDP, length 82 [|LLDP] 17:29:30.437969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.437969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.437969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.437969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.437969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.437970 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.437970 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.437970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.447941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 LLDP, length 82 [|LLDP] 17:29:30.447942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.447942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0354 f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.447942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.447942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.447942 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.447942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.457940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 LLDP, length 82 [|LLDP] 17:29:30.457940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.457940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.457940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.457940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.457940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.457940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.467935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 LLDP, length 82 [|LLDP] 17:29:30.467935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.467935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0364 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.467935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.467936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.467936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.467936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.477934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.477934 LLDP, length 82 [|LLDP] 17:29:30.477934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.477934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036b d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.477934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.477934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.477935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.477935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.477935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.477935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.487929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.487929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.487929 LLDP, length 82 [|LLDP] 17:29:30.487929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.487929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.487929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.487930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.487930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.497929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.497929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.497930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.497930 LLDP, length 82 [|LLDP] 17:29:30.497930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.497930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037b 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.497930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.497930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.497930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.497930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.507927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 LLDP, length 82 [|LLDP] 17:29:30.507927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.507927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.507927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.507928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.507928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.507928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.517939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.517939 LLDP, length 82 [|LLDP] 17:29:30.517939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.517939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.517939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.517940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.517940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.517940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.517940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.517940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.527931 LLDP, length 82 [|LLDP] 17:29:30.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0391 fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.527932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.527932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.537928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 LLDP, length 82 [|LLDP] 17:29:30.537928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.537928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.537928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.537928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.537928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.537928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.547936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 LLDP, length 82 [|LLDP] 17:29:30.547936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.547936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a1 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.547936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.547936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.547936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.547936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.557928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.557928 LLDP, length 82 [|LLDP] 17:29:30.557928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.557928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a8 df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.557928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.557929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.557929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.557929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.557929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.557929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.567929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 LLDP, length 82 [|LLDP] 17:29:30.567929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.567929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.567929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.567929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.567929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.577936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 LLDP, length 82 [|LLDP] 17:29:30.577937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.577937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b8 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.577937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.577937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.577937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.577937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.587932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 LLDP, length 82 [|LLDP] 17:29:30.587932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.587932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.587932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.587932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.587933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.587933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.597936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.597936 LLDP, length 82 [|LLDP] 17:29:30.597936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.597936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.597936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.597936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.597936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.597936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.597936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.597937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.607929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 LLDP, length 82 [|LLDP] 17:29:30.607929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.607929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cf 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.607929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.607929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.607929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.607929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.617929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 LLDP, length 82 [|LLDP] 17:29:30.617929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.617930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.617930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.617930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.617930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.617930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.627932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 LLDP, length 82 [|LLDP] 17:29:30.627933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.627933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03de 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.627933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.627933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.627933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.627933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.637936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.637936 LLDP, length 82 [|LLDP] 17:29:30.637936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.637936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e5 e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.637936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.637937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.637937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.637937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.637937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.637937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.647931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 LLDP, length 82 [|LLDP] 17:29:30.647932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.647932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.647932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.647932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.647932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.647932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.657947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 LLDP, length 82 [|LLDP] 17:29:30.657947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.657947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f5 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.657947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.657947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.657947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.657947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.667931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 LLDP, length 82 [|LLDP] 17:29:30.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.667931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fc cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.667932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.667932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.667932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.667932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.677929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.677929 LLDP, length 82 [|LLDP] 17:29:30.677929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.677929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.677929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.677929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.677930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.677930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.677930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.687929 LLDP, length 82 [|LLDP] 17:29:30.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.687930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040c 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.687930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.687930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.687930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.687930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.687930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.697934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 LLDP, length 82 [|LLDP] 17:29:30.697934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.697935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.697935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.697935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.697935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.697935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.707930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 LLDP, length 82 [|LLDP] 17:29:30.707930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.707930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041b 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.707930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.707931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.707931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.707931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.717931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 LLDP, length 82 [|LLDP] 17:29:30.717931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.717931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0422 f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.717931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.717931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.717931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.717931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.727932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.727932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.727932 LLDP, length 82 [|LLDP] 17:29:30.727932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.727933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.727933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.727933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.727933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.727933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.727933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.737932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 LLDP, length 82 [|LLDP] 17:29:30.737932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.737932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0432 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.737932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.737932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.737932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.737932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.747929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 LLDP, length 82 [|LLDP] 17:29:30.747930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.747930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0439 d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.747930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.747930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.747930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.747930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.757933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 LLDP, length 82 [|LLDP] 17:29:30.757934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.757934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.757934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.757934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.757934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.757934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.767928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 LLDP, length 82 [|LLDP] 17:29:30.767928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.767928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0449 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.767928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.777931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.777931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.777932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.777932 LLDP, length 82 [|LLDP] 17:29:30.777932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.777932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.777932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.777932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.777932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.777932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.787929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 LLDP, length 82 [|LLDP] 17:29:30.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.787929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.787929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.787929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.787929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.797929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 LLDP, length 82 [|LLDP] 17:29:30.797929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.797929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045f fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.797929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.797929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.797929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.797929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.807946 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.807946 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.807946 LLDP, length 82 [|LLDP] 17:29:30.807946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.807946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.807946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.807946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.807947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.807947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.807947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.817936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 LLDP, length 82 [|LLDP] 17:29:30.817936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.817936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046f 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.817936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.817936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.817936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.817936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.827934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 LLDP, length 82 [|LLDP] 17:29:30.827934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.827934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0476 ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.827934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.827934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.827934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.827934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.837933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.837933 LLDP, length 82 [|LLDP] 17:29:30.837933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.837933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.837933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.837933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.837933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.837933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.837934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.837934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.847932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 LLDP, length 82 [|LLDP] 17:29:30.847932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.847932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0486 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.847932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.847932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.847932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.847932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.857931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 LLDP, length 82 [|LLDP] 17:29:30.857931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.857932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.857932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.857932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.857932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.857932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.867932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 LLDP, length 82 [|LLDP] 17:29:30.867932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.867932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.867932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.867932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.867932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.867933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.877933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.877933 LLDP, length 82 [|LLDP] 17:29:30.877933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.877933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049d 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.877933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.877934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.877934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.877934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.877934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.877934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.887930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.887930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.887930 LLDP, length 82 [|LLDP] 17:29:30.887930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.887930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.887930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.887930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.887930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.887931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.887931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.897930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 LLDP, length 82 [|LLDP] 17:29:30.897931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.897931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ac 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.897931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.897931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.897931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.897931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.907930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 LLDP, length 82 [|LLDP] 17:29:30.907930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.907930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b3 e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.907930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.907930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.907930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.907931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.917929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.917929 LLDP, length 82 [|LLDP] 17:29:30.917930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.917930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.917930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.917930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.917930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.917930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.917930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.917930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.927933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.927933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.927934 LLDP, length 82 [|LLDP] 17:29:30.927934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.927934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c3 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.927934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.927934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.927934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.927934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.927934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.937931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 LLDP, length 82 [|LLDP] 17:29:30.937932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.937932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ca ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.937932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.937932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.937932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.937932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.947931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 LLDP, length 82 [|LLDP] 17:29:30.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.947931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.957931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 LLDP, length 82 [|LLDP] 17:29:30.957931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.957931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04da 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.957931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.957931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.957931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.957931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.967933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 LLDP, length 82 [|LLDP] 17:29:30.967933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.967933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.967933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.967933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.967933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.967933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.977931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 LLDP, length 82 [|LLDP] 17:29:30.977931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.977931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e9 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.977931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.977931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.977931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.977932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.987930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 LLDP, length 82 [|LLDP] 17:29:30.987930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.987930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f0 efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.987930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.987930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.987930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.987930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.997928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 LLDP, length 82 [|LLDP] 17:29:30.997929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.997929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.997929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.997929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.997929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.997929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.007929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.007929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.007929 LLDP, length 82 [|LLDP] 17:29:31.007929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.007929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0500 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.007930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.007930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.007930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.007930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.007930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.017930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 LLDP, length 82 [|LLDP] 17:29:31.017931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.017931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0507 d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.017931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.017931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.017931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.017931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.027931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 LLDP, length 82 [|LLDP] 17:29:31.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.027932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.027932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.027932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.027932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.037930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 LLDP, length 82 [|LLDP] 17:29:31.037930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.037930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0517 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.037930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.037930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.037930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.037930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.047931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 LLDP, length 82 [|LLDP] 17:29:31.047931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.047931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.047931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.047931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.047931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.057930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 LLDP, length 82 [|LLDP] 17:29:31.057930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.057930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.057930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.057931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.057931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.057931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.067930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 LLDP, length 82 [|LLDP] 17:29:31.067931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.067931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052d f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.067931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.067931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.067931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.067931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.077930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 LLDP, length 82 [|LLDP] 17:29:31.077930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.077930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.077930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.077930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.077930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.077930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.087927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.087927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.087927 LLDP, length 82 [|LLDP] 17:29:31.087927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.087927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053d 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.087927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.087927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.087928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.087928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.087928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.097929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 LLDP, length 82 [|LLDP] 17:29:31.097929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.097929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0544 dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.097929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.097930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.097930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.097930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.107928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 LLDP, length 82 [|LLDP] 17:29:31.107928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.107928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.107928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.107928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.107928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.107928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.117930 LLDP, length 82 [|LLDP] 17:29:31.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.117930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0554 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.117931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.117931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.117931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.127932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.127932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.127932 LLDP, length 82 [|LLDP] 17:29:31.127932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.127933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.127933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.127933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.127933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.127933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.127933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.137930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 LLDP, length 82 [|LLDP] 17:29:31.137930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.137930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.137930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.137930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.137930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.137930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.147931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 LLDP, length 82 [|LLDP] 17:29:31.147931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.147931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056b 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.147931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.147932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.147932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.147932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.157931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.157931 LLDP, length 82 [|LLDP] 17:29:31.157931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.157931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.157931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.157931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.157931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.157932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.157932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.157932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.167931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 LLDP, length 82 [|LLDP] 17:29:31.167931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.167931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057a 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.167931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.167931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.167931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.167931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.178213 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 LLDP, length 82 [|LLDP] 17:29:31.178213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.178213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0581 e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.178213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.178213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.178213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.178213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.191102 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 LLDP, length 82 [|LLDP] 17:29:31.191102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.191102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.191102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.191102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.191102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.191102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.197952 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 LLDP, length 82 [|LLDP] 17:29:31.197952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.197952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0591 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.197952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.197952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.197952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.197952 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.207931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.207931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.207932 LLDP, length 82 [|LLDP] 17:29:31.207932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.207932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.207932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.207932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.207932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.207932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.207932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.217931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 LLDP, length 82 [|LLDP] 17:29:31.217931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.217931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.217931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.217931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.217931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.217931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.227938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 LLDP, length 82 [|LLDP] 17:29:31.227938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.227938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a8 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.227939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.227939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.227939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.227939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.237928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.237928 LLDP, length 82 [|LLDP] 17:29:31.237928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.237928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.237929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.237929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.237929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.237929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.237929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.237929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.248238 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.248238 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.248238 LLDP, length 82 [|LLDP] 17:29:31.248238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.248238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b7 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.248239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.248239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.248239 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.248239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.248239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.257931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 LLDP, length 82 [|LLDP] 17:29:31.257931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.257931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05be ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.257931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.257932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.257932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.257932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.267933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 LLDP, length 82 [|LLDP] 17:29:31.267933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.267933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.267933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.267933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.267933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.267933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.277929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.277929 LLDP, length 82 [|LLDP] 17:29:31.277929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.277930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ce 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.277930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.277930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.277930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.277930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.277930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.277930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.287931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.287931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.287931 LLDP, length 82 [|LLDP] 17:29:31.287931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.287931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d5 d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.287931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.287931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.287931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.287932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.287932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.297930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 LLDP, length 82 [|LLDP] 17:29:31.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.297931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.297931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.297931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.307931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 LLDP, length 82 [|LLDP] 17:29:31.307931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.307931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e5 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.307931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.307931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.307931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.307931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.317929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.317929 LLDP, length 82 [|LLDP] 17:29:31.317929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.317929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.317929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.317930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.317930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.317930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.317930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.317930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.327929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.327929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.327930 LLDP, length 82 [|LLDP] 17:29:31.327930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.327930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.327930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.327930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.327930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.327930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.337929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 LLDP, length 82 [|LLDP] 17:29:31.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fb f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.337930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.347930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 LLDP, length 82 [|LLDP] 17:29:31.347930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.347930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.347930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.347930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.347930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.347930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.357931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 LLDP, length 82 [|LLDP] 17:29:31.357931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.357931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060b 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.357931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.357931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.357931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.357931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.367930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 LLDP, length 82 [|LLDP] 17:29:31.367931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.367931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0612 da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.367931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.367931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.367931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.367931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.377930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 LLDP, length 82 [|LLDP] 17:29:31.377931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.377931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.377931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.377931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.377931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.377931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.387932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 LLDP, length 82 [|LLDP] 17:29:31.387932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.387932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0622 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.387932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.387932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.387932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.387932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.397935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 LLDP, length 82 [|LLDP] 17:29:31.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.397935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.397935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.397935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.397935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.397935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.407935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.407935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.407935 LLDP, length 82 [|LLDP] 17:29:31.407935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.407936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.407936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.407936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.407936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.407936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.407936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.417932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 LLDP, length 82 [|LLDP] 17:29:31.417933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.417933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0639 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.417933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.417933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.417933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.417933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.427930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 LLDP, length 82 [|LLDP] 17:29:31.427930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.427930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.427930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.427930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.427931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.427931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.437929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.437929 LLDP, length 82 [|LLDP] 17:29:31.437929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.437929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0648 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.437929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.437929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.437929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.437930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.437930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.437930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.447929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 LLDP, length 82 [|LLDP] 17:29:31.447930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.447930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064f e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.447930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.447930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.447930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.447930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.457937 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 LLDP, length 82 [|LLDP] 17:29:31.457937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.457937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.457937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.457937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.457937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.457937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.467932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 LLDP, length 82 [|LLDP] 17:29:31.467933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.467933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065f 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.467933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.467933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.467933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.467933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.477928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.477928 LLDP, length 82 [|LLDP] 17:29:31.477928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.477928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.477928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.477929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.477929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.477929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.477929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.477929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.487930 LLDP, length 82 [|LLDP] 17:29:31.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.487930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.487931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.487931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.497930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 LLDP, length 82 [|LLDP] 17:29:31.497930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.497931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0676 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.497931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.497931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.497931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.497931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.507931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 LLDP, length 82 [|LLDP] 17:29:31.507931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.507931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.507931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.507931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.507932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.507932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.517935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.517935 LLDP, length 82 [|LLDP] 17:29:31.517935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.517935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0685 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.517935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.517935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.517936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.517936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.517936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.517936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 LLDP, length 82 [|LLDP] 17:29:31.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068c ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.537930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 LLDP, length 82 [|LLDP] 17:29:31.537930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.537930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.537930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.537930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.537930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.537931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.547931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.547931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.547932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.547932 LLDP, length 82 [|LLDP] 17:29:31.547932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.547932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069c 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.547932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.547932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.547932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.547932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.557929 LLDP, length 82 [|LLDP] 17:29:31.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a3 cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.557930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.557930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.557930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.567928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.567928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.567928 LLDP, length 82 [|LLDP] 17:29:31.567928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.567929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.567929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.567929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.567929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.567929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.577928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.577928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.577928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.577929 LLDP, length 82 [|LLDP] 17:29:31.577929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.577929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b3 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.577929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.577929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.577929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.577929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.587927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 LLDP, length 82 [|LLDP] 17:29:31.587927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.587927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.587927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.587927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.587927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.587928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.597927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 LLDP, length 82 [|LLDP] 17:29:31.597927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.597927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.597927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.597927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.597927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.597927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.607927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.607927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.607927 LLDP, length 82 [|LLDP] 17:29:31.607927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.607928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c9 f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.607928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.607928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.607928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.607928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.607928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.617928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 LLDP, length 82 [|LLDP] 17:29:31.617928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.617928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.617928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.617928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.617929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.617929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.627929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 LLDP, length 82 [|LLDP] 17:29:31.627929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.627929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d9 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.627929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.627929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.627929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.627929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.637928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 LLDP, length 82 [|LLDP] 17:29:31.637928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.637928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e0 d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.637928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.637928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.637928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.637928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.647928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 LLDP, length 82 [|LLDP] 17:29:31.647928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.647928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.647928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.647928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.647928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.647928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.657929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 LLDP, length 82 [|LLDP] 17:29:31.657929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.657929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f0 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.657929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.657929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.657929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.657929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.667928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.667928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.667929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.667929 LLDP, length 82 [|LLDP] 17:29:31.667929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.667929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.667929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.667929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.667929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.667929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.677927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 LLDP, length 82 [|LLDP] 17:29:31.677928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.677928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.677928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.677928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.677928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.677928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 LLDP, length 82 [|LLDP] 17:29:31.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.687929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0706 fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.687929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.687929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.687929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.687929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.697928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 LLDP, length 82 [|LLDP] 17:29:31.697928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.697928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.697928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.697929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.697929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.697929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.707928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.707928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.707928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.707929 LLDP, length 82 [|LLDP] 17:29:31.707929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.707929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0716 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.707929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.707929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.707929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.707929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.717936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.717936 LLDP, length 82 [|LLDP] 17:29:31.717936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.717936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071d e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.717936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.717936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.717936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.717936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.717936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.717937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.727930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.727930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.727930 LLDP, length 82 [|LLDP] 17:29:31.727930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.727930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.727930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.727931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.727931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.727931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.727931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.737929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 LLDP, length 82 [|LLDP] 17:29:31.737929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.737929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072d 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.737929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.737929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.737929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.737929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.747926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 LLDP, length 82 [|LLDP] 17:29:31.747926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.747926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.747926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.747926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.747927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.747927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.757927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.757927 LLDP, length 82 [|LLDP] 17:29:31.757927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.757927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.757927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.757928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.767927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.767927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.767927 LLDP, length 82 [|LLDP] 17:29:31.767927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.767927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0744 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.767928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.767928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.777929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 LLDP, length 82 [|LLDP] 17:29:31.777929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.777929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.777929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.777929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.777929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.777930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.787928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 LLDP, length 82 [|LLDP] 17:29:31.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0753 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.787929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.787929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.787929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.787929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.797926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.797926 LLDP, length 82 [|LLDP] 17:29:31.797926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.797926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075a eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.797926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.797926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.797926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.797926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.797927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.797927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.807928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 LLDP, length 82 [|LLDP] 17:29:31.807928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.807928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.807928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.807928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.807928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.807928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.817927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 LLDP, length 82 [|LLDP] 17:29:31.817928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.817928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076a 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.817928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.817928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.817928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.817928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.827966 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 LLDP, length 82 [|LLDP] 17:29:31.827967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.827967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0771 ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.827967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.827967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.827967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.827967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.837953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 LLDP, length 82 [|LLDP] 17:29:31.837953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.837953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.837953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.837953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.837953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.837953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.847957 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 LLDP, length 82 [|LLDP] 17:29:31.847957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.847957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0781 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.847957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.847957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.847957 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.847957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.857955 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 LLDP, length 82 [|LLDP] 17:29:31.857955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.857955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.857955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.857955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.857955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.857955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.867953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 LLDP, length 82 [|LLDP] 17:29:31.867954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.867954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.867954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.867954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.867954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.867954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.877952 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.877952 LLDP, length 82 [|LLDP] 17:29:31.877952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.877952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0797 f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.877952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.877952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.877952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.877952 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.877952 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.877953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.887953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 LLDP, length 82 [|LLDP] 17:29:31.887953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.887953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.887953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.887953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.887953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.887953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.897956 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 LLDP, length 82 [|LLDP] 17:29:31.897956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.897956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a7 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.897956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.897956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.897956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.897956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.907941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 LLDP, length 82 [|LLDP] 17:29:31.907941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.907941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ae d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.907941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.907941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.907941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.907941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.917937 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 LLDP, length 82 [|LLDP] 17:29:31.917937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.917937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.917937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.917937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.917937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.917937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.927930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 LLDP, length 82 [|LLDP] 17:29:31.927930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.927930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07be 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.927930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.927930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.927930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.927931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.937930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 LLDP, length 82 [|LLDP] 17:29:31.937931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.937931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.937931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.937931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.937931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.937931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.947930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 LLDP, length 82 [|LLDP] 17:29:31.947930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.947930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.957940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 LLDP, length 82 [|LLDP] 17:29:31.957940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.957940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d4 fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.957940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.957940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.957940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.957940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.967935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.967935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.967935 LLDP, length 82 [|LLDP] 17:29:31.967935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.967936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.967936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.967936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.967936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.967936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.967936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.977942 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.977942 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.977943 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.977943 LLDP, length 82 [|LLDP] 17:29:31.977943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.977943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e4 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.977943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.977943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.977943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.977943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.987935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 LLDP, length 82 [|LLDP] 17:29:31.987935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.987936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07eb e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.987936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.987936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.987936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.987936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.997935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.997935 LLDP, length 82 [|LLDP] 17:29:31.997935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.997935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.997935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.997935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.997935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.997935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.997935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.997936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.008263 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.008263 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.008263 LLDP, length 82 [|LLDP] 17:29:32.008263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.008263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fb 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.008263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.008263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.008264 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.008264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.008264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.017934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 LLDP, length 82 [|LLDP] 17:29:32.017935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.017935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.017935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.017935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.017935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.017935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.027932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 LLDP, length 82 [|LLDP] 17:29:32.027932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.027932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.027932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.027932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.027932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.027933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.037944 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.037944 LLDP, length 82 [|LLDP] 17:29:32.037944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.037944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0812 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.037944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.037944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.037945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.037945 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.037945 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.037945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.047944 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 LLDP, length 82 [|LLDP] 17:29:32.047944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.047944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.047944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.047944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.047944 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.047944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.057940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 LLDP, length 82 [|LLDP] 17:29:32.057940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.057940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0821 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.057940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.057940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.057940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.057940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.067933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 LLDP, length 82 [|LLDP] 17:29:32.067934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.067934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0828 e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.067934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.067934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.067934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.067934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.077931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.077931 LLDP, length 82 [|LLDP] 17:29:32.077931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.077931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.077931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.077931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.077931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.077931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.077932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.077932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.087931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.087931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.087931 LLDP, length 82 [|LLDP] 17:29:32.087931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.087931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0838 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.087931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.087931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.087932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.087932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.087932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.097930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 LLDP, length 82 [|LLDP] 17:29:32.097931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.097931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083f ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.097931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.097931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.097931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.097931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.107931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.107931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.107931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.107932 LLDP, length 82 [|LLDP] 17:29:32.107932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.107932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.107932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.107932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.107932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.107932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.117930 LLDP, length 82 [|LLDP] 17:29:32.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.117931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084f 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.117931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.117931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.117931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.117931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.117931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.117931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.127929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 LLDP, length 82 [|LLDP] 17:29:32.127929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.127929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.127929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.127929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.127929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.127930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.137931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 LLDP, length 82 [|LLDP] 17:29:32.137932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.137932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.137932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.137932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.137932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.137932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.147971 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 LLDP, length 82 [|LLDP] 17:29:32.147971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.147972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0865 f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.147972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.147972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.147972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.147972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.157953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.157953 LLDP, length 82 [|LLDP] 17:29:32.157953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.157953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.157954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.157954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.157954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.157954 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.157954 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.157954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.167935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.167935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.167936 LLDP, length 82 [|LLDP] 17:29:32.167936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.167936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0875 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.167936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.167936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.167936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.167936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.167936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.177932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 LLDP, length 82 [|LLDP] 17:29:32.177932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.177932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087c d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.177932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.177932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.177932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.177933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.187933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 LLDP, length 82 [|LLDP] 17:29:32.187934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.187934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.187934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.187934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.187934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.187934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.197930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.197930 LLDP, length 82 [|LLDP] 17:29:32.197931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.197931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088c 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.197931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.197931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.197931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.197931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.197931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.197931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.207930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.207930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.207930 LLDP, length 82 [|LLDP] 17:29:32.207930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.207930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.207930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.207930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.207931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.207931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.207931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.217932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.217932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.217933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.217933 LLDP, length 82 [|LLDP] 17:29:32.217933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.217933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.217933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.217933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.217933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.217933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.227933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 LLDP, length 82 [|LLDP] 17:29:32.227933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.227933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a2 fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.227933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.227933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.227933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.227933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.237930 LLDP, length 82 [|LLDP] 17:29:32.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.237931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.237931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.237931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.247929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.247929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.247929 LLDP, length 82 [|LLDP] 17:29:32.247929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.247930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b2 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.247930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.247930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.247930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.247930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.247930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.257931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 LLDP, length 82 [|LLDP] 17:29:32.257931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.257931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b9 deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.257931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.257931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.257931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.257931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.267932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.267932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.267933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.267933 LLDP, length 82 [|LLDP] 17:29:32.267933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.267933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.267933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.267933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.267933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.267933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.277931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 LLDP, length 82 [|LLDP] 17:29:32.277931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.277931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c9 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.277931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.277931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.277931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.277931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.287929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.287929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.287930 LLDP, length 82 [|LLDP] 17:29:32.287930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.287930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.287930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.287930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.287930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.287930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.287930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.297931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 LLDP, length 82 [|LLDP] 17:29:32.297931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.297931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.297931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.297931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.297931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.297931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.307935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 LLDP, length 82 [|LLDP] 17:29:32.307936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.307936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e0 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.307936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.307936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.307936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.307936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.317936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 LLDP, length 82 [|LLDP] 17:29:32.317936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.317936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.317936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.317936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.317936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.317936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.327934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 LLDP, length 82 [|LLDP] 17:29:32.327934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.327934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ef 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.327934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.327934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.327934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.327934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.337928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.337928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.337929 LLDP, length 82 [|LLDP] 17:29:32.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f6 e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.337929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.347932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 LLDP, length 82 [|LLDP] 17:29:32.347933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.347933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.347933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.347933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.347933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.347933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.357931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.357931 LLDP, length 82 [|LLDP] 17:29:32.357931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.357931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0906 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.357931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.357931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.357932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.357932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.357932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.357932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.367932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 LLDP, length 82 [|LLDP] 17:29:32.367932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.367932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090d cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.367932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.367932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.367932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.367932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.377936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 LLDP, length 82 [|LLDP] 17:29:32.377936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.377936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.377936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.377936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.377936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.377937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.387931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 LLDP, length 82 [|LLDP] 17:29:32.387931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.387932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091d 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.387932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.387932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.387932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.387932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.397935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 LLDP, length 82 [|LLDP] 17:29:32.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.397935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.397935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.397935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.397935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.397935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.407934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.407934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.407934 LLDP, length 82 [|LLDP] 17:29:32.407935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.407935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092c 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.407935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.407935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.407935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.407935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.407935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.417936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.417936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.417937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.417937 LLDP, length 82 [|LLDP] 17:29:32.417937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.417937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0933 f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.417937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.417937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.417937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.417937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 LLDP, length 82 [|LLDP] 17:29:32.427932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.427932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.427932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.437929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.437929 LLDP, length 82 [|LLDP] 17:29:32.437929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.437930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0943 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.437930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.437930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.437930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.437930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.437930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.437930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.447928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.447928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.447929 LLDP, length 82 [|LLDP] 17:29:32.447929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.447929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094a d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.447929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.447929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.447929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.447929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.447929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.457928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 LLDP, length 82 [|LLDP] 17:29:32.457928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.457928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.457928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.457929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.457929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.457929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.467933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.467933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.467933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.467934 LLDP, length 82 [|LLDP] 17:29:32.467934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.467934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095a 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.467934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.467934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.467934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.467934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.477932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 LLDP, length 82 [|LLDP] 17:29:32.477932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.477932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.477932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.477932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.477932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.477932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 LLDP, length 82 [|LLDP] 17:29:32.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.487930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.487930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.497936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 LLDP, length 82 [|LLDP] 17:29:32.497936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.497936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0970 f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.497936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.497936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.497936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.497936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.507930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 LLDP, length 82 [|LLDP] 17:29:32.507931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.507931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.507931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.507931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.507931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.507931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.517933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 LLDP, length 82 [|LLDP] 17:29:32.517933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.517933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0980 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.517933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.517933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.517933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.517933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.527930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.527930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.527931 LLDP, length 82 [|LLDP] 17:29:32.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0987 dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.537933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 LLDP, length 82 [|LLDP] 17:29:32.537933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.537933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.537933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.537933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.537933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.537934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.547931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 LLDP, length 82 [|LLDP] 17:29:32.547931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.547932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0997 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.547932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.547932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.547932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.547932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.557928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.557928 LLDP, length 82 [|LLDP] 17:29:32.557928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.557928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.557928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.557928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.557928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.557928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.557929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.557929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.567932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 LLDP, length 82 [|LLDP] 17:29:32.567932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.567932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.567932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.567932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.567932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.567932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.577932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 LLDP, length 82 [|LLDP] 17:29:32.577932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.577932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ae 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.577932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.577932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.577933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.577933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.587929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 LLDP, length 82 [|LLDP] 17:29:32.587929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.587929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.587929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.587930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.587930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.587930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.597928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 LLDP, length 82 [|LLDP] 17:29:32.597928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.597928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bd 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.597928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.597928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.597928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.597928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.607930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 LLDP, length 82 [|LLDP] 17:29:32.607930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.607930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c4 e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.607930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.607930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.607930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.607930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.617933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 LLDP, length 82 [|LLDP] 17:29:32.617934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.617934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.617934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.617934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.617934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.617934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.627934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 LLDP, length 82 [|LLDP] 17:29:32.627934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.627934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d4 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.627934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.627934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.627934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.627934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.637931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 LLDP, length 82 [|LLDP] 17:29:32.637931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.637931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.637931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.637931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.637931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.637931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.647930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.647930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.647930 LLDP, length 82 [|LLDP] 17:29:32.647931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.647931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.647931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.647931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.647931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.647931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.647931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.657930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.657930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.657931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.657931 LLDP, length 82 [|LLDP] 17:29:32.657931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.657931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09eb 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.657931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.657931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.657931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.657931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.667931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 LLDP, length 82 [|LLDP] 17:29:32.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.667932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.667932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.667932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.667932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.667932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.677932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 LLDP, length 82 [|LLDP] 17:29:32.677932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.677932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09fa 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.677932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.677932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.677932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.677932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.687926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.687926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.687927 LLDP, length 82 [|LLDP] 17:29:32.687927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.687927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a01 ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.687927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.687927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.687927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.687927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.687927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.697931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 LLDP, length 82 [|LLDP] 17:29:32.697932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.697932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.697932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.697932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.697932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.697932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.707929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 LLDP, length 82 [|LLDP] 17:29:32.707930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.707930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a11 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.707930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.707930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.707930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.707930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.717931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.717931 LLDP, length 82 [|LLDP] 17:29:32.717932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.717932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a18 d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.717932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.717932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.717932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.717932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.717932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.717932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.727930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.727930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.727930 LLDP, length 82 [|LLDP] 17:29:32.727930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.727930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.727931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.727931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.727931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.727931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.727931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.737930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.737930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.737931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.737931 LLDP, length 82 [|LLDP] 17:29:32.737931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.737931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a28 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.737931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.737931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.737931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.737931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.747929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 LLDP, length 82 [|LLDP] 17:29:32.747929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.747929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.747929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.747929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.747930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.747930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.757928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 LLDP, length 82 [|LLDP] 17:29:32.757928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.757928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.757928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.757928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.767932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.767932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.767932 LLDP, length 82 [|LLDP] 17:29:32.767932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.767933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3e f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.767933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.767933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.767933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.767933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.767933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.777930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 LLDP, length 82 [|LLDP] 17:29:32.777930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.777930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.777931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.777931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.777931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.777931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.787930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 LLDP, length 82 [|LLDP] 17:29:32.787930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.787930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4e 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.787930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.787930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.787930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.787930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.797929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.797929 LLDP, length 82 [|LLDP] 17:29:32.797929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.797929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a55 db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.797929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.797929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.797929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.797929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.797930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.797930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.807929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.807929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.807929 LLDP, length 82 [|LLDP] 17:29:32.807929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.807929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.807929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.807929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.807930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.807930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.807930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.817929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 LLDP, length 82 [|LLDP] 17:29:32.817929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.817930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a65 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.817930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.817930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.817930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.817930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.827932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 LLDP, length 82 [|LLDP] 17:29:32.827932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.827932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.827932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.827932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.827932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.827932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.837930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 LLDP, length 82 [|LLDP] 17:29:32.837930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.837930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.837930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.837930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.837930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.837930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.847929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 LLDP, length 82 [|LLDP] 17:29:32.847929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.847929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7c 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.847929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.847929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.847929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.847929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.857950 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 LLDP, length 82 [|LLDP] 17:29:32.857951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.857951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.857951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.857951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.857951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.857951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.867945 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 LLDP, length 82 [|LLDP] 17:29:32.867945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.867945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8b 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.867945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.867945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.867946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.867946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.877936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.877936 LLDP, length 82 [|LLDP] 17:29:32.877936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.877936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a92 e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.877936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.877936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.877936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.877937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.877937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.877937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.887935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.887935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.887935 LLDP, length 82 [|LLDP] 17:29:32.887935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.887936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.887936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.887936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.887936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.887936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.887936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.897953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 LLDP, length 82 [|LLDP] 17:29:32.897953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.897953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa2 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.897953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.897953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.897953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.897954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.907955 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 LLDP, length 82 [|LLDP] 17:29:32.907956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.907956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.907956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.907956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.907956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.907956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.917941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.917941 LLDP, length 82 [|LLDP] 17:29:32.917941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.917941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.917941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.917941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.917941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.917941 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.917941 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.917942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.927933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 LLDP, length 82 [|LLDP] 17:29:32.927933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.927933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab9 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.927933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.927933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.927933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.927933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.937938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 LLDP, length 82 [|LLDP] 17:29:32.937938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.937938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.937938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.937938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.937938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.937938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.947931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 LLDP, length 82 [|LLDP] 17:29:32.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.947931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac8 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.957932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.957932 LLDP, length 82 [|LLDP] 17:29:32.957932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.957932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acf ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.957933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.957933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.957933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.957933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.957933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.957933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.967932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.967932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.967932 LLDP, length 82 [|LLDP] 17:29:32.967932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.967933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.967933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.967933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.967933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.967933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.967933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.977934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 LLDP, length 82 [|LLDP] 17:29:32.977934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.977934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adf 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.977934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.977934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.977935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.977935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.987932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 LLDP, length 82 [|LLDP] 17:29:32.987932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.987932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae6 d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.987932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.987932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.987933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.987933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.997927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.997927 LLDP, length 82 [|LLDP] 17:29:32.997927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.997927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.997927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.997928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.997928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.997928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.997928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.997928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.007930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 LLDP, length 82 [|LLDP] 17:29:33.007930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.007930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af6 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.007930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.007930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.007930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.007930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.017929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 LLDP, length 82 [|LLDP] 17:29:33.017929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.017929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.017929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.017929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.017929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.017929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.027930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.027930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.027930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.027931 LLDP, length 82 [|LLDP] 17:29:33.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.027931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.027931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.027931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.027931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.037932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.037932 LLDP, length 82 [|LLDP] 17:29:33.037932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.037932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0c f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.037932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.037932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.037933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.037933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.037933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.037933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.047931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 LLDP, length 82 [|LLDP] 17:29:33.047931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.047931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.047931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.047931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.047931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.057928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.057928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.057928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.057929 LLDP, length 82 [|LLDP] 17:29:33.057929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.057929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1c 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.057929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.057929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.057929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.057929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.067928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.067928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.067929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.067929 LLDP, length 82 [|LLDP] 17:29:33.067929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.067929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b23 d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.067929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.067929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.067929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.067929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.077930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.077930 LLDP, length 82 [|LLDP] 17:29:33.077930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.077930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.077930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.077930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.077931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.077931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.077931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.077931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.087934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.087934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.087934 LLDP, length 82 [|LLDP] 17:29:33.087934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.087934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b33 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.087934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.087935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.087935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.087935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.087935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.097929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 LLDP, length 82 [|LLDP] 17:29:33.097929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.097929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.097929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.097929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.097929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.097929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.107929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 LLDP, length 82 [|LLDP] 17:29:33.107929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.107929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.107929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.107930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.107930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.107930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.117929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.117929 LLDP, length 82 [|LLDP] 17:29:33.117929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.117929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b49 ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.117930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.117930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.117930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.127932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 LLDP, length 82 [|LLDP] 17:29:33.127932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.127932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.127932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.127932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.127932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.127932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.137931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 LLDP, length 82 [|LLDP] 17:29:33.137932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.137932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b59 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.137932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.137932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.137932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.137932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.147932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 LLDP, length 82 [|LLDP] 17:29:33.147932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.147933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b60 e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.147933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.147933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.147933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.147933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.157931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 LLDP, length 82 [|LLDP] 17:29:33.157931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.157931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.157931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.157931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.157931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.157931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.167930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.167930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.167930 LLDP, length 82 [|LLDP] 17:29:33.167930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.167930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b70 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.167930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.167930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.167930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.167931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.167931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.177930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 LLDP, length 82 [|LLDP] 17:29:33.177931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.177931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.177931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.177931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.177931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.177931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.187929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.187929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.187930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.187930 LLDP, length 82 [|LLDP] 17:29:33.187930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.187930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.187930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.187930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.187930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.187930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.197928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 LLDP, length 82 [|LLDP] 17:29:33.197928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.197928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b87 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.197928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.197928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.197928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.197928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.207929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.207929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.207929 LLDP, length 82 [|LLDP] 17:29:33.207929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.207929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.207929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.207929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.207930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.207930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.207930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.217928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 LLDP, length 82 [|LLDP] 17:29:33.217928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.217928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b96 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.217928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.217928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.217928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.217928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.227931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 LLDP, length 82 [|LLDP] 17:29:33.227931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.227931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9d ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.227931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.227931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.227931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.227931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 LLDP, length 82 [|LLDP] 17:29:33.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.237930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.247929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.247929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.247930 LLDP, length 82 [|LLDP] 17:29:33.247930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.247930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bad 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.247930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.247930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.247930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.247930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.247930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.257929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 LLDP, length 82 [|LLDP] 17:29:33.257929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.257929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb4 cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.257929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.257929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.257929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.257929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.267928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 LLDP, length 82 [|LLDP] 17:29:33.267929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.267929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.267929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.267929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.267929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.267929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.277933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.277933 LLDP, length 82 [|LLDP] 17:29:33.277933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.277933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc4 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.277933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.277933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.277934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.277934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.277934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.277934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.287928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 LLDP, length 82 [|LLDP] 17:29:33.287929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.287929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.287929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.287929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.287929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.287929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.297929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.297929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.297929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.297930 LLDP, length 82 [|LLDP] 17:29:33.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.297930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.297930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.297930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.307928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.307928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.307928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.307929 LLDP, length 82 [|LLDP] 17:29:33.307929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.307929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bda f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.307929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.307929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.307929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.307929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.317929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 LLDP, length 82 [|LLDP] 17:29:33.317929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.317929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.317929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.317929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.317929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.317929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.327930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.327930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.327930 LLDP, length 82 [|LLDP] 17:29:33.327930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bea 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.327931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.327931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.327931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.327931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.327931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.337931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 LLDP, length 82 [|LLDP] 17:29:33.337931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.337931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf1 d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.337931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.337931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.337931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.337931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.347931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 LLDP, length 82 [|LLDP] 17:29:33.347931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.347931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.347931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.347931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.347931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.347931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.357929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.357929 LLDP, length 82 [|LLDP] 17:29:33.357929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.357930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c01 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.357930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.357930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.357930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.357930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.357930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.357930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.367932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.367932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.367932 LLDP, length 82 [|LLDP] 17:29:33.367932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.367932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.367932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.367932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.367933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.367933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.367933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.377940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 LLDP, length 82 [|LLDP] 17:29:33.377940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.377940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.377940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.377940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.377940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.377940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.387934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 LLDP, length 82 [|LLDP] 17:29:33.387934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.387934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c17 fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.387934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.387934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.387935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.387935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.397936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 LLDP, length 82 [|LLDP] 17:29:33.397937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.397937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.397937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.397937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.397937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.397937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.407928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 LLDP, length 82 [|LLDP] 17:29:33.407929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.407929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c27 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.407929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.407929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.407929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.407929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.417927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 LLDP, length 82 [|LLDP] 17:29:33.417927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.417927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2e e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.417927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.417927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.417927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.417927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 LLDP, length 82 [|LLDP] 17:29:33.427931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.427931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.427931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.437927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 LLDP, length 82 [|LLDP] 17:29:33.437927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.437927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3e 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.437927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.437927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.437927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.437927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.447928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.447928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.447928 LLDP, length 82 [|LLDP] 17:29:33.447928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.447928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.447929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.447929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.447929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.447929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.447929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.457928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 LLDP, length 82 [|LLDP] 17:29:33.457928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.457929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.457929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.457929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.457929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.457929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.467928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 LLDP, length 82 [|LLDP] 17:29:33.467928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.467928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c55 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.467929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.467929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.467929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.467929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.472207 LLDP, length 219: localhost 17:29:33.477931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.477931 LLDP, length 82 [|LLDP] 17:29:33.477931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.477931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.477931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.477931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.477932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.477932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.477932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.477932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.487936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.487936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.487936 LLDP, length 82 [|LLDP] 17:29:33.487936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.487936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c64 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.487936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.487937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.487937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.487937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.487937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.497931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 LLDP, length 82 [|LLDP] 17:29:33.497931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.497931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6b ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.497931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.497931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.497931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.497931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.507929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 LLDP, length 82 [|LLDP] 17:29:33.507929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.507929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.507929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.507929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.507930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.507930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.517929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.517929 LLDP, length 82 [|LLDP] 17:29:33.517929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.517929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7b 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.517929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.517929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.517929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.517929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.517929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.517930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 LLDP, length 82 [|LLDP] 17:29:33.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c82 cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.537929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 LLDP, length 82 [|LLDP] 17:29:33.537929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.537929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.537929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.537929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.537929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.537929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.547927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 LLDP, length 82 [|LLDP] 17:29:33.547928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.547928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c92 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.547928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.547928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.547928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.547928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.557929 LLDP, length 82 [|LLDP] 17:29:33.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.557929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.557930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.557930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.567928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 LLDP, length 82 [|LLDP] 17:29:33.567928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.567928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.567928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.567928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.567928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.577931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 LLDP, length 82 [|LLDP] 17:29:33.577931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.577932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca8 f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.577932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.577932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.577932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.577932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.587928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 LLDP, length 82 [|LLDP] 17:29:33.587928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.587928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.587928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.587928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.587929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.587929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.597931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.597931 LLDP, length 82 [|LLDP] 17:29:33.597931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.597932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb8 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.597932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.597932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.597932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.597932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.597932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.597932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.607929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 LLDP, length 82 [|LLDP] 17:29:33.607929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.607929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbf d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.607929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.607929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.607929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.607929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.617925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 LLDP, length 82 [|LLDP] 17:29:33.617926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.617926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.617926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.617926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.617926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.617926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.627929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 LLDP, length 82 [|LLDP] 17:29:33.627929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.627929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccf 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.627929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.627929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.627930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.627930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.637928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 LLDP, length 82 [|LLDP] 17:29:33.637928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.637928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 b9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.637928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.637928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.637928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.637928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.647929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 LLDP, length 82 [|LLDP] 17:29:33.647929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.647929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 5b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.647929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.647929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.647929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.647929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.657929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 LLDP, length 82 [|LLDP] 17:29:33.657929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.657929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce5 fc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.657929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.657929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.657929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.657929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.667929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.667929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.667929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.667930 LLDP, length 82 [|LLDP] 17:29:33.667930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.667930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced 9d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.667930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.667930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.667930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.667930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.677930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.677930 LLDP, length 82 [|LLDP] 17:29:33.677930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.677930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf5 3e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.677930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.677930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.677931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.677931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.677931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.677931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.687928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.687928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.687928 LLDP, length 82 [|LLDP] 17:29:33.687928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.687928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfc df8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.687929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.687929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.687929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.687929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.687929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.697929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 LLDP, length 82 [|LLDP] 17:29:33.697929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.697929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 80ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.697929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.697929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.697929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.697929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.707926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 LLDP, length 82 [|LLDP] 17:29:33.707927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.707927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0c 21ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.707927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.707927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.707927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.707927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.717927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.717927 LLDP, length 82 [|LLDP] 17:29:33.717927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.717927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 c2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.717927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.717927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.717927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.717927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.717927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.717928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.727927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 LLDP, length 82 [|LLDP] 17:29:33.727927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.727927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 640e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.727927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.727927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.727927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.727927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.737928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.737928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.737928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.737929 LLDP, length 82 [|LLDP] 17:29:33.737929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.737929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d23 052e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.737929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.737929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.737929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.737929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.747927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 LLDP, length 82 [|LLDP] 17:29:33.747927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.747927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a a64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.747927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.747927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.747927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.747928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.757927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.757927 LLDP, length 82 [|LLDP] 17:29:33.757927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.757927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d32 476e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.757927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.757927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.767928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.767928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.767928 LLDP, length 82 [|LLDP] 17:29:33.767928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.767928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d39 e88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.767929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.767929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.777926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 LLDP, length 82 [|LLDP] 17:29:33.777926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.777926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 89ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.777926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.777926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.777926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.777926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.787929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 LLDP, length 82 [|LLDP] 17:29:33.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d49 2ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.787930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.787930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.787930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.787930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.797925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 LLDP, length 82 [|LLDP] 17:29:33.797926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.797926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d50 cbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.797926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.797926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.797926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.797926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.807927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 LLDP, length 82 [|LLDP] 17:29:33.807927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.807927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 6d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.807927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.807927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.807927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.807927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.817927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 LLDP, length 82 [|LLDP] 17:29:33.817928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.817928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d60 0e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.817928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.817928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.817928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.817928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.827925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 LLDP, length 82 [|LLDP] 17:29:33.827925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.827925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 af4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.827925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.827925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.827925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.827925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.837928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.837928 LLDP, length 82 [|LLDP] 17:29:33.837928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.837928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6f 506e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.837928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.837928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.837928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.837928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.837928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.837929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.847927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 LLDP, length 82 [|LLDP] 17:29:33.847927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.847927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d76 f18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.847927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.847927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.847927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.847927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.857934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 LLDP, length 82 [|LLDP] 17:29:33.857935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.857935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e 92ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.857935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.857935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.857935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.857935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.867932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 LLDP, length 82 [|LLDP] 17:29:33.867932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.867932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d86 33ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.867932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.867932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.867932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.867932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.877943 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 LLDP, length 82 [|LLDP] 17:29:33.877944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.877944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8d d4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.877944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.877944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.877944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.877944 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.887947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 LLDP, length 82 [|LLDP] 17:29:33.887947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.887947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 760e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.887947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.887947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.887947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.887947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.897939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 LLDP, length 82 [|LLDP] 17:29:33.897939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.897939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9d 172e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.897939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.897940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.897940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.897940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.907933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.907933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.907934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.907934 LLDP, length 82 [|LLDP] 17:29:33.907934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.907934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 b84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.907934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.907934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.907934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.907934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.917929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.917929 LLDP, length 82 [|LLDP] 17:29:33.917930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.917930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 596e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.917930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.917930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.917930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.917930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.917930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.917930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.927929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.927929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.927930 LLDP, length 82 [|LLDP] 17:29:33.927930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.927930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db3 fa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.927930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.927930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.927930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.927930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.927930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.937936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 LLDP, length 82 [|LLDP] 17:29:33.937936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.937936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb 9bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.937936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.937937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.937937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.937937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.947929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 LLDP, length 82 [|LLDP] 17:29:33.947929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.947929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc3 3cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.947929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.947930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.947930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.947930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.957928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.957928 LLDP, length 82 [|LLDP] 17:29:33.957928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.957928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dca ddee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.957928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.957928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.957929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.957929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.957929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.957929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.967938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.967938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.967938 LLDP, length 82 [|LLDP] 17:29:33.967938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.967938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 7f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.967938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.967938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.967938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.967939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.967939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.977929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 LLDP, length 82 [|LLDP] 17:29:33.977929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.977929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dda 202e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.977929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.977929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.977929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.977929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.987932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 LLDP, length 82 [|LLDP] 17:29:33.987933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.987933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 c14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.987933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.987933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.987933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.987933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.997947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.997947 LLDP, length 82 [|LLDP] 17:29:33.997947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.997947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 626e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.997948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.997948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.997948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.997948 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.997948 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.997948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.007931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.007931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.007931 LLDP, length 82 [|LLDP] 17:29:34.007931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.007931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df1 038e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.007932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.007932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.007932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.007932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.007932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.017928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 LLDP, length 82 [|LLDP] 17:29:34.017928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.017928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 a4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.017928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.017928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.017928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.017928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.027931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 LLDP, length 82 [|LLDP] 17:29:34.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e00 45ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.027931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.027931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.027931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.027931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.037930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 LLDP, length 82 [|LLDP] 17:29:34.037930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.037930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e07 e6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.037930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.037930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.037930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.037930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.047930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 LLDP, length 82 [|LLDP] 17:29:34.047930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.047930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f 880e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.047930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.047930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.047930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.057929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 LLDP, length 82 [|LLDP] 17:29:34.057929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.057929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e17 292e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.057929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.057929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.057929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.057929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.067928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 LLDP, length 82 [|LLDP] 17:29:34.067929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.067929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1e ca4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.067929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.067929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.067929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.067929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.077926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 LLDP, length 82 [|LLDP] 17:29:34.077927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.077927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 6b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.077927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.077927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.077927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.077927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.087932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 LLDP, length 82 [|LLDP] 17:29:34.087932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.087932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2e 0c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.087932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.087932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.087932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.087932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.097932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 LLDP, length 82 [|LLDP] 17:29:34.097933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.097933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 adae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.097933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.097933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.097933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.097933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.107930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.107930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.107931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.107931 LLDP, length 82 [|LLDP] 17:29:34.107931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.107931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3d 4ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.107931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.107931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.107931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.107931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 LLDP, length 82 [|LLDP] 17:29:34.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.117930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e44 efee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.117930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.127930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 LLDP, length 82 [|LLDP] 17:29:34.127930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.127930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c 910e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.127930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.127930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.127930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.127930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.137930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 LLDP, length 82 [|LLDP] 17:29:34.137930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.137930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e54 322e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.137931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.137931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.137931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.137931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.147929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 LLDP, length 82 [|LLDP] 17:29:34.147929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.147929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5b d34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.147929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.147930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.147930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.147930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.157929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.157929 LLDP, length 82 [|LLDP] 17:29:34.157930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.157930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 746e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.157930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.157930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.157930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.157930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.157930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.157930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.167928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.167928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.167928 LLDP, length 82 [|LLDP] 17:29:34.167928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.167929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6b 158e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.167929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.167929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.167929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.167929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.167929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.177928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 LLDP, length 82 [|LLDP] 17:29:34.177928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.177928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 b6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.177928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.177928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.177928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.177928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.187929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 LLDP, length 82 [|LLDP] 17:29:34.187930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.187930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 57ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.187930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.187930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.187930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.187930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.197931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.197931 LLDP, length 82 [|LLDP] 17:29:34.197931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.197931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e81 f8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.197931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.197931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.197932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.197932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.197932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.197932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.207927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.207927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.207927 LLDP, length 82 [|LLDP] 17:29:34.207927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.207928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 9a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.207928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.207928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.207928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.207928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.207928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.217928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 LLDP, length 82 [|LLDP] 17:29:34.217928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.217928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e91 3b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.217929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.217929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.217929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.217929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.227928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 LLDP, length 82 [|LLDP] 17:29:34.227928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.227929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e98 dc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.227929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.227929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.227929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.227929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 LLDP, length 82 [|LLDP] 17:29:34.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 7d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.237930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.247927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 LLDP, length 82 [|LLDP] 17:29:34.247927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.247927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea8 1e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.247927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.247927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.247927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.247927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.257927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 LLDP, length 82 [|LLDP] 17:29:34.257927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.257928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf bfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.257928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.257928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.257928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.257928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.267927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 LLDP, length 82 [|LLDP] 17:29:34.267927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.267927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 60ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.267927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.267927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.267927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.267927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.277926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.277926 LLDP, length 82 [|LLDP] 17:29:34.277926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.277926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebf 01ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.277927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.277927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.277927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.277927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.277927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.277927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.287930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 LLDP, length 82 [|LLDP] 17:29:34.287930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.287930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 a30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.287930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.287930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.287930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.287930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.297929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 LLDP, length 82 [|LLDP] 17:29:34.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ece 442e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.297930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.297930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.297930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.307928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 LLDP, length 82 [|LLDP] 17:29:34.307928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.307928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed5 e54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.307928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.307928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.307928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.307929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.317928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 LLDP, length 82 [|LLDP] 17:29:34.317928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.317928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd 866e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.317928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.317928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.317928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.317928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.327928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 LLDP, length 82 [|LLDP] 17:29:34.327929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.327929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee5 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.327929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.327929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.327929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.327929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.337928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 LLDP, length 82 [|LLDP] 17:29:34.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec c8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.337929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.347931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 LLDP, length 82 [|LLDP] 17:29:34.347931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.347931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 69ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.347931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.347932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.347932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.347932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.357927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 LLDP, length 82 [|LLDP] 17:29:34.357927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.357927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efc 0aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.357927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.357927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.357927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.357927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.367926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.367926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.367926 LLDP, length 82 [|LLDP] 17:29:34.367926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.367926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 ac0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.367927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.367927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.367927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.367927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.367927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.377926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 LLDP, length 82 [|LLDP] 17:29:34.377926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.377926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0b 4d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.377926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.377926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.377926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.377926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.387929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 LLDP, length 82 [|LLDP] 17:29:34.387930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.387930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f12 ee4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.387930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.387930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.387930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.387930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.397962 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 LLDP, length 82 [|LLDP] 17:29:34.397962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.397962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a 8f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.397962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.397962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.397962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.397962 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.407965 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.407965 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.407965 LLDP, length 82 [|LLDP] 17:29:34.407965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.407965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f22 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.407966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.407966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.407966 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.407966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.407966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.417936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 LLDP, length 82 [|LLDP] 17:29:34.417936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.417936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f29 d1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.417936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.417936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.417936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.417936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 LLDP, length 82 [|LLDP] 17:29:34.427932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.427932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 72ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.427932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.437942 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.437942 LLDP, length 82 [|LLDP] 17:29:34.437942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.437942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f39 13ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.437943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.437943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.437943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.437943 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.437943 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.437943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.447930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.447930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.447931 LLDP, length 82 [|LLDP] 17:29:34.447931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.447931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 b50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.447931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.447931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.447931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.447931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.447931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.457931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 LLDP, length 82 [|LLDP] 17:29:34.457932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.457932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 562e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.457932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.457932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.457932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.457932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.467931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.467931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.467932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.467932 LLDP, length 82 [|LLDP] 17:29:34.467932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.467932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4f f74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.467932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.467932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.467932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.467932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.477939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.477939 LLDP, length 82 [|LLDP] 17:29:34.477939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.477939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 986e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.477939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.477939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.477939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.477939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.477939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.477940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.487930 LLDP, length 82 [|LLDP] 17:29:34.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5f 398e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.487931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.487931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.487931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.487931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.487931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.497933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 LLDP, length 82 [|LLDP] 17:29:34.497934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.497934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f66 daae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.497934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.497934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.497934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.497934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.507933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 LLDP, length 82 [|LLDP] 17:29:34.507933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.507933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e 7bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.507933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.507933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.507933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.507933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.517929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.517929 LLDP, length 82 [|LLDP] 17:29:34.517929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.517929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f76 1cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.517929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.517929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.517930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.517930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.517930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.517930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.527932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 LLDP, length 82 [|LLDP] 17:29:34.527932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.527932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d be0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.527932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.527932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.527932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.527932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.537932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 LLDP, length 82 [|LLDP] 17:29:34.537932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.537932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 5f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.537932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.537932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.537932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.537932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.547933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 LLDP, length 82 [|LLDP] 17:29:34.547933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.547933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8d 004e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.547933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.547933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.547933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.547933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.557929 LLDP, length 82 [|LLDP] 17:29:34.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 a16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.557929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.557929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.557929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.567931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 LLDP, length 82 [|LLDP] 17:29:34.567931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.567931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9c 428e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.567931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.567931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.567931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.567931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.577930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.577930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.577931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.577931 LLDP, length 82 [|LLDP] 17:29:34.577931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.577931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa3 e3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.577931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.577931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.577931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.577931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.587928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 LLDP, length 82 [|LLDP] 17:29:34.587928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.587928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab 84ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.587928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.587928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.587928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.587928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.597931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.597931 LLDP, length 82 [|LLDP] 17:29:34.597932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.597932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb3 25ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.597932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.597932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.597932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.597932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.597932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.597932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.607930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.607930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.607930 LLDP, length 82 [|LLDP] 17:29:34.607930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.607930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba c70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.607931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.607931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.607931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.607931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.607931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.617935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 LLDP, length 82 [|LLDP] 17:29:34.617935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.617935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 682e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.617935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.617935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.617935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.617935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.627931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 LLDP, length 82 [|LLDP] 17:29:34.627931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.627932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fca 094e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.627932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.627932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.627932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.627932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.637931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.637931 LLDP, length 82 [|LLDP] 17:29:34.637931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.637931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 aa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.637931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.637931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.637931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.637931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.637931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.637932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.647932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.647932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.647932 LLDP, length 82 [|LLDP] 17:29:34.647932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.647932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd9 4b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.647932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.647932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.647933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.647933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.647933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.657931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 LLDP, length 82 [|LLDP] 17:29:34.657931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.657931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe0 ecae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.657931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.657931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.657931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.657931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.667930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 LLDP, length 82 [|LLDP] 17:29:34.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.667931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 8dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.667931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.667931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.667931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.667931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.677929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.677929 LLDP, length 82 [|LLDP] 17:29:34.677929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.677929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff0 2eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.677930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.677930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.677930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.677930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.677930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.687929 LLDP, length 82 [|LLDP] 17:29:34.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.687930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff7 d00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.687930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.687930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.687930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.687930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.687930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.697930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 LLDP, length 82 [|LLDP] 17:29:34.697931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.697931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff 712e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.697931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.697931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.697931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.697931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.707936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.707936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.707936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.707937 LLDP, length 82 [|LLDP] 17:29:34.707937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.707937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1007 124e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.707937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.707937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.707937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.707937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.717938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.717938 LLDP, length 82 [|LLDP] 17:29:34.717938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.717939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e b36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.717939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.717939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.717939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.717939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.717939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.717939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.727936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 LLDP, length 82 [|LLDP] 17:29:34.727937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.727937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 548e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.727937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.727937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.727937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.727937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.737930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 LLDP, length 82 [|LLDP] 17:29:34.737930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.737930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101d f5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.737930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.737931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.737931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.737931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.747932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 LLDP, length 82 [|LLDP] 17:29:34.747933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.747933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 96ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.747933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.747933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.747933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.747933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.757928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 LLDP, length 82 [|LLDP] 17:29:34.757929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.757929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102d 37ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.757929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.757929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.757929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.757929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.767935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.767935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.767935 LLDP, length 82 [|LLDP] 17:29:34.767935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.767935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1034 d90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.767936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.767936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.767936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.767936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.767936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.777935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 LLDP, length 82 [|LLDP] 17:29:34.777936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.777936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c 7a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.777936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.777936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.777936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.777936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.787930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.787930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.787930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.787931 LLDP, length 82 [|LLDP] 17:29:34.787931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.787931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1044 1b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.787931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.787931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.787931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.787931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.797931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.797931 LLDP, length 82 [|LLDP] 17:29:34.797932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.797932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b bc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.797932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.797932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.797932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.797932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.797932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.797932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4371 packets captured 4371 packets received by filter 0 packets dropped by kernel 874 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 2] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg2 with rc 0 and out 17:29:30.437969 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.437969 LLDP, length 82 [|LLDP] 17:29:30.437969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.437969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.437969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.437969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.437969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.437970 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.437970 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.437970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.447941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 LLDP, length 82 [|LLDP] 17:29:30.447942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.447942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0354 f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.447942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.447942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.447942 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.447942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.447942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.457940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.457940 LLDP, length 82 [|LLDP] 17:29:30.457940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.457940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.457940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.457940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.457940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.457940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.467935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.467935 LLDP, length 82 [|LLDP] 17:29:30.467935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.467935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0364 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.467935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.467936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.467936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.467936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.477934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.477934 LLDP, length 82 [|LLDP] 17:29:30.477934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.477934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036b d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.477934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.477934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.477935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.477935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.477935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.477935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.487929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.487929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.487929 LLDP, length 82 [|LLDP] 17:29:30.487929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.487929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.487929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.487930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.487930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.497929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.497929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.497930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.497930 LLDP, length 82 [|LLDP] 17:29:30.497930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.497930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037b 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.497930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.497930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.497930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.497930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.507927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.507927 LLDP, length 82 [|LLDP] 17:29:30.507927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.507927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.507927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.507928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.507928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.507928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.517939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.517939 LLDP, length 82 [|LLDP] 17:29:30.517939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.517939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.517939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.517940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.517940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.517940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.517940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.517940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.527931 LLDP, length 82 [|LLDP] 17:29:30.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0391 fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.527932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.527932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.537928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.537928 LLDP, length 82 [|LLDP] 17:29:30.537928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.537928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.537928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.537928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.537928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.537928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.547936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.547936 LLDP, length 82 [|LLDP] 17:29:30.547936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.547936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a1 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.547936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.547936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.547936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.547936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.557928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.557928 LLDP, length 82 [|LLDP] 17:29:30.557928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.557928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a8 df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.557928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.557929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.557929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.557929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.557929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.557929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.567929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 LLDP, length 82 [|LLDP] 17:29:30.567929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.567929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.567929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.567929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.567929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.567929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.577936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.577937 LLDP, length 82 [|LLDP] 17:29:30.577937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.577937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b8 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.577937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.577937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.577937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.577937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.587932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.587932 LLDP, length 82 [|LLDP] 17:29:30.587932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.587932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.587932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.587932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.587933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.587933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.597936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.597936 LLDP, length 82 [|LLDP] 17:29:30.597936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.597936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.597936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.597936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.597936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.597936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.597936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.597937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.607929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 LLDP, length 82 [|LLDP] 17:29:30.607929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.607929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cf 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.607929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.607929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.607929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.607929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.607929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.617929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.617929 LLDP, length 82 [|LLDP] 17:29:30.617929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.617930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.617930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.617930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.617930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.617930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.627932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.627932 LLDP, length 82 [|LLDP] 17:29:30.627933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.627933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03de 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.627933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.627933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.627933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.627933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.637936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.637936 LLDP, length 82 [|LLDP] 17:29:30.637936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.637936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e5 e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.637936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.637937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.637937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.637937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.637937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.637937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.647931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 LLDP, length 82 [|LLDP] 17:29:30.647932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.647932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.647932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.647932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.647932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.647932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.647932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.657947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.657947 LLDP, length 82 [|LLDP] 17:29:30.657947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.657947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f5 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.657947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.657947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.657947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.657947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.667931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.667931 LLDP, length 82 [|LLDP] 17:29:30.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.667931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fc cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.667932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.667932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.667932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.667932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.677929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.677929 LLDP, length 82 [|LLDP] 17:29:30.677929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.677929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.677929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.677929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.677930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.677930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.677930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.687929 LLDP, length 82 [|LLDP] 17:29:30.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.687930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040c 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.687930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.687930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.687930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.687930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.687930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.697934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.697934 LLDP, length 82 [|LLDP] 17:29:30.697934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.697935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.697935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.697935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.697935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.697935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.707930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.707930 LLDP, length 82 [|LLDP] 17:29:30.707930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.707930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041b 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.707930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.707931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.707931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.707931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.717931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 LLDP, length 82 [|LLDP] 17:29:30.717931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.717931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0422 f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.717931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.717931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.717931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.717931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.717931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.727932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.727932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.727932 LLDP, length 82 [|LLDP] 17:29:30.727932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.727933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.727933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.727933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.727933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.727933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.727933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.737932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.737932 LLDP, length 82 [|LLDP] 17:29:30.737932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.737932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0432 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.737932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.737932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.737932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.737932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.747929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.747930 LLDP, length 82 [|LLDP] 17:29:30.747930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.747930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0439 d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.747930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.747930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.747930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.747930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.757933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 LLDP, length 82 [|LLDP] 17:29:30.757934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.757934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.757934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.757934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.757934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.757934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.757934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.767928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 LLDP, length 82 [|LLDP] 17:29:30.767928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.767928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0449 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.767928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.767928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.777931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.777931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.777932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.777932 LLDP, length 82 [|LLDP] 17:29:30.777932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.777932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.777932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.777932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.777932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.777932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.787929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.787929 LLDP, length 82 [|LLDP] 17:29:30.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.787929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.787929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.787929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.787929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.797929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 LLDP, length 82 [|LLDP] 17:29:30.797929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.797929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045f fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.797929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.797929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.797929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.797929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.797929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.807946 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.807946 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.807946 LLDP, length 82 [|LLDP] 17:29:30.807946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.807946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.807946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.807946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.807947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.807947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.807947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.817936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.817936 LLDP, length 82 [|LLDP] 17:29:30.817936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.817936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046f 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.817936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.817936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.817936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.817936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.827934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.827934 LLDP, length 82 [|LLDP] 17:29:30.827934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.827934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0476 ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.827934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.827934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.827934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.827934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.837933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.837933 LLDP, length 82 [|LLDP] 17:29:30.837933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.837933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.837933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.837933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.837933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.837933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.837934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.837934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.847932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 LLDP, length 82 [|LLDP] 17:29:30.847932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.847932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0486 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.847932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.847932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.847932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.847932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.847932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.857931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.857931 LLDP, length 82 [|LLDP] 17:29:30.857931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.857932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.857932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.857932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.857932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.857932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.867932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.867932 LLDP, length 82 [|LLDP] 17:29:30.867932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.867932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.867932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.867932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.867932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.867933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.877933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.877933 LLDP, length 82 [|LLDP] 17:29:30.877933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.877933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049d 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.877933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.877934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.877934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.877934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.877934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.877934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.887930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.887930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.887930 LLDP, length 82 [|LLDP] 17:29:30.887930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.887930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.887930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.887930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.887930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.887931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.887931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.897930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.897931 LLDP, length 82 [|LLDP] 17:29:30.897931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.897931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ac 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.897931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.897931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.897931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.897931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.907930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.907930 LLDP, length 82 [|LLDP] 17:29:30.907930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.907930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b3 e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.907930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.907930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.907930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.907931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.917929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.917929 LLDP, length 82 [|LLDP] 17:29:30.917930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.917930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.917930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.917930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.917930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.917930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.917930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.917930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.927933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.927933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.927934 LLDP, length 82 [|LLDP] 17:29:30.927934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.927934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c3 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.927934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.927934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.927934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.927934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.927934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.937931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.937931 LLDP, length 82 [|LLDP] 17:29:30.937932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.937932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ca ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.937932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.937932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.937932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.937932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.947931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.947931 LLDP, length 82 [|LLDP] 17:29:30.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.947931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.957931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 LLDP, length 82 [|LLDP] 17:29:30.957931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.957931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04da 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.957931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.957931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.957931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.957931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.957931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.967933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 LLDP, length 82 [|LLDP] 17:29:30.967933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.967933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.967933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.967933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.967933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.967933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.967933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.977931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.977931 LLDP, length 82 [|LLDP] 17:29:30.977931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.977931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e9 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.977931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.977931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.977931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.977932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.987930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.987930 LLDP, length 82 [|LLDP] 17:29:30.987930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.987930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f0 efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.987930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.987930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.987930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.987930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:30.997928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 LLDP, length 82 [|LLDP] 17:29:30.997929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:30.997929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:30.997929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:30.997929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:30.997929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:30.997929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:30.997929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.007929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.007929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.007929 LLDP, length 82 [|LLDP] 17:29:31.007929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.007929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0500 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.007930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.007930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.007930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.007930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.007930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.017930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.017930 LLDP, length 82 [|LLDP] 17:29:31.017931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.017931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0507 d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.017931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.017931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.017931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.017931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.027931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.027931 LLDP, length 82 [|LLDP] 17:29:31.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.027932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.027932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.027932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.027932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.037930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 LLDP, length 82 [|LLDP] 17:29:31.037930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.037930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0517 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.037930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.037930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.037930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.037930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.037930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.047931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 LLDP, length 82 [|LLDP] 17:29:31.047931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.047931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.047931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.047931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.047931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.047931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.057930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.057930 LLDP, length 82 [|LLDP] 17:29:31.057930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.057930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.057930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.057931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.057931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.057931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.067930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.067930 LLDP, length 82 [|LLDP] 17:29:31.067931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.067931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052d f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.067931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.067931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.067931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.067931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.077930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 LLDP, length 82 [|LLDP] 17:29:31.077930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.077930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.077930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.077930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.077930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.077930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.077930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.087927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.087927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.087927 LLDP, length 82 [|LLDP] 17:29:31.087927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.087927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053d 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.087927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.087927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.087928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.087928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.087928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.097929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.097929 LLDP, length 82 [|LLDP] 17:29:31.097929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.097929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0544 dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.097929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.097930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.097930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.097930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.107928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.107928 LLDP, length 82 [|LLDP] 17:29:31.107928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.107928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.107928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.107928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.107928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.107928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.117930 LLDP, length 82 [|LLDP] 17:29:31.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.117930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0554 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.117931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.117931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.117931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.127932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.127932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.127932 LLDP, length 82 [|LLDP] 17:29:31.127932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.127933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.127933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.127933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.127933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.127933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.127933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.137930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.137930 LLDP, length 82 [|LLDP] 17:29:31.137930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.137930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.137930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.137930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.137930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.137930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.147931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.147931 LLDP, length 82 [|LLDP] 17:29:31.147931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.147931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056b 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.147931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.147932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.147932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.147932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.157931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.157931 LLDP, length 82 [|LLDP] 17:29:31.157931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.157931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.157931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.157931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.157931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.157932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.157932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.157932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.167931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 LLDP, length 82 [|LLDP] 17:29:31.167931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.167931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057a 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.167931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.167931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.167931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.167931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.167931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.178213 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.178213 LLDP, length 82 [|LLDP] 17:29:31.178213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.178213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0581 e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.178213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.178213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.178213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.178213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.191102 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.191102 LLDP, length 82 [|LLDP] 17:29:31.191102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.191102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.191102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.191102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.191102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.191102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.197952 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 LLDP, length 82 [|LLDP] 17:29:31.197952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.197952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0591 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.197952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.197952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.197952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.197952 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.197952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.207931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.207931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.207932 LLDP, length 82 [|LLDP] 17:29:31.207932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.207932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.207932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.207932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.207932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.207932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.207932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.217931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.217931 LLDP, length 82 [|LLDP] 17:29:31.217931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.217931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.217931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.217931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.217931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.217931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.227938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.227938 LLDP, length 82 [|LLDP] 17:29:31.227938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.227938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a8 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.227939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.227939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.227939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.227939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.237928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.237928 LLDP, length 82 [|LLDP] 17:29:31.237928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.237928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.237929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.237929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.237929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.237929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.237929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.237929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.248238 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.248238 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.248238 LLDP, length 82 [|LLDP] 17:29:31.248238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.248238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b7 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.248239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.248239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.248239 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.248239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.248239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.257931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.257931 LLDP, length 82 [|LLDP] 17:29:31.257931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.257931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05be ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.257931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.257932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.257932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.257932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.267933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.267933 LLDP, length 82 [|LLDP] 17:29:31.267933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.267933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.267933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.267933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.267933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.267933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.277929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.277929 LLDP, length 82 [|LLDP] 17:29:31.277929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.277930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ce 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.277930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.277930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.277930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.277930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.277930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.277930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.287931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.287931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.287931 LLDP, length 82 [|LLDP] 17:29:31.287931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.287931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d5 d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.287931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.287931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.287931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.287932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.287932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.297930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.297930 LLDP, length 82 [|LLDP] 17:29:31.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.297931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.297931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.297931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.307931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.307931 LLDP, length 82 [|LLDP] 17:29:31.307931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.307931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e5 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.307931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.307931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.307931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.307931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.317929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.317929 LLDP, length 82 [|LLDP] 17:29:31.317929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.317929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.317929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.317930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.317930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.317930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.317930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.317930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.327929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.327929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.327930 LLDP, length 82 [|LLDP] 17:29:31.327930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.327930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.327930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.327930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.327930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.327930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.337929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.337929 LLDP, length 82 [|LLDP] 17:29:31.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fb f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.337930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.347930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.347930 LLDP, length 82 [|LLDP] 17:29:31.347930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.347930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.347930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.347930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.347930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.347930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.357931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 LLDP, length 82 [|LLDP] 17:29:31.357931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.357931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060b 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.357931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.357931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.357931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.357931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.357931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.367930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 LLDP, length 82 [|LLDP] 17:29:31.367931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.367931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0612 da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.367931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.367931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.367931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.367931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.367931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.377930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.377930 LLDP, length 82 [|LLDP] 17:29:31.377931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.377931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.377931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.377931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.377931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.377931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.387932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.387932 LLDP, length 82 [|LLDP] 17:29:31.387932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.387932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0622 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.387932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.387932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.387932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.387932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.397935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 LLDP, length 82 [|LLDP] 17:29:31.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.397935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.397935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.397935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.397935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.397935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.397935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.407935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.407935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.407935 LLDP, length 82 [|LLDP] 17:29:31.407935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.407936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.407936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.407936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.407936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.407936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.407936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.417932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.417933 LLDP, length 82 [|LLDP] 17:29:31.417933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.417933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0639 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.417933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.417933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.417933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.417933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.427930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.427930 LLDP, length 82 [|LLDP] 17:29:31.427930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.427930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.427930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.427930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.427931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.427931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.437929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.437929 LLDP, length 82 [|LLDP] 17:29:31.437929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.437929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0648 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.437929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.437929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.437929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.437930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.437930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.437930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.447929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 LLDP, length 82 [|LLDP] 17:29:31.447930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.447930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064f e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.447930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.447930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.447930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.447930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.447930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.457937 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.457937 LLDP, length 82 [|LLDP] 17:29:31.457937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.457937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.457937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.457937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.457937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.457937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.467932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.467933 LLDP, length 82 [|LLDP] 17:29:31.467933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.467933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065f 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.467933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.467933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.467933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.467933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.477928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.477928 LLDP, length 82 [|LLDP] 17:29:31.477928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.477928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.477928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.477929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.477929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.477929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.477929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.477929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.487930 LLDP, length 82 [|LLDP] 17:29:31.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.487930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.487931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.487931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.497930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.497930 LLDP, length 82 [|LLDP] 17:29:31.497930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.497931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0676 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.497931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.497931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.497931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.497931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.507931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.507931 LLDP, length 82 [|LLDP] 17:29:31.507931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.507931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.507931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.507931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.507932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.507932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.517935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.517935 LLDP, length 82 [|LLDP] 17:29:31.517935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.517935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0685 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.517935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.517935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.517936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.517936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.517936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.517936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 LLDP, length 82 [|LLDP] 17:29:31.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068c ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.537930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.537930 LLDP, length 82 [|LLDP] 17:29:31.537930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.537930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.537930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.537930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.537930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.537931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.547931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.547931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.547932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.547932 LLDP, length 82 [|LLDP] 17:29:31.547932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.547932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069c 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.547932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.547932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.547932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.547932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.557929 LLDP, length 82 [|LLDP] 17:29:31.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a3 cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.557930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.557930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.557930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.567928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.567928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.567928 LLDP, length 82 [|LLDP] 17:29:31.567928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.567929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.567929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.567929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.567929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.567929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.577928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.577928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.577928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.577929 LLDP, length 82 [|LLDP] 17:29:31.577929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.577929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b3 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.577929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.577929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.577929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.577929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.587927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.587927 LLDP, length 82 [|LLDP] 17:29:31.587927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.587927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.587927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.587927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.587927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.587928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.597927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 LLDP, length 82 [|LLDP] 17:29:31.597927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.597927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.597927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.597927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.597927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.597927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.597927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.607927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.607927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.607927 LLDP, length 82 [|LLDP] 17:29:31.607927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.607928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c9 f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.607928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.607928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.607928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.607928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.607928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.617928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.617928 LLDP, length 82 [|LLDP] 17:29:31.617928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.617928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.617928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.617928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.617929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.617929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.627929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.627929 LLDP, length 82 [|LLDP] 17:29:31.627929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.627929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d9 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.627929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.627929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.627929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.627929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.637928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 LLDP, length 82 [|LLDP] 17:29:31.637928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.637928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e0 d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.637928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.637928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.637928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.637928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.637928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.647928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 LLDP, length 82 [|LLDP] 17:29:31.647928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.647928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.647928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.647928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.647928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.647928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.647928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.657929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.657929 LLDP, length 82 [|LLDP] 17:29:31.657929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.657929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f0 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.657929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.657929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.657929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.657929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.667928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.667928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.667929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.667929 LLDP, length 82 [|LLDP] 17:29:31.667929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.667929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.667929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.667929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.667929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.667929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.677927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 LLDP, length 82 [|LLDP] 17:29:31.677928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.677928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.677928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.677928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.677928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.677928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.677928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 LLDP, length 82 [|LLDP] 17:29:31.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.687929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0706 fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.687929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.687929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.687929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.687929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.687929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.697928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.697928 LLDP, length 82 [|LLDP] 17:29:31.697928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.697928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.697928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.697929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.697929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.697929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.707928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.707928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.707928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.707929 LLDP, length 82 [|LLDP] 17:29:31.707929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.707929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0716 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.707929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.707929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.707929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.707929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.717936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.717936 LLDP, length 82 [|LLDP] 17:29:31.717936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.717936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071d e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.717936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.717936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.717936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.717936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.717936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.717937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.727930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.727930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.727930 LLDP, length 82 [|LLDP] 17:29:31.727930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.727930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.727930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.727931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.727931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.727931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.727931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.737929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.737929 LLDP, length 82 [|LLDP] 17:29:31.737929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.737929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072d 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.737929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.737929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.737929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.737929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.747926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.747926 LLDP, length 82 [|LLDP] 17:29:31.747926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.747926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.747926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.747926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.747927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.747927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.757927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.757927 LLDP, length 82 [|LLDP] 17:29:31.757927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.757927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.757927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.757928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.767927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.767927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.767927 LLDP, length 82 [|LLDP] 17:29:31.767927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.767927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0744 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.767928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.767928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.777929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.777929 LLDP, length 82 [|LLDP] 17:29:31.777929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.777929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.777929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.777929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.777929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.777930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.787928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.787929 LLDP, length 82 [|LLDP] 17:29:31.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0753 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.787929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.787929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.787929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.787929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.797926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.797926 LLDP, length 82 [|LLDP] 17:29:31.797926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.797926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075a eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.797926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.797926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.797926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.797926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.797927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.797927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.807928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 LLDP, length 82 [|LLDP] 17:29:31.807928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.807928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.807928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.807928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.807928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.807928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.807928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.817927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.817927 LLDP, length 82 [|LLDP] 17:29:31.817928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.817928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076a 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.817928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.817928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.817928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.817928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.827966 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.827967 LLDP, length 82 [|LLDP] 17:29:31.827967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.827967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0771 ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.827967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.827967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.827967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.827967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.837953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 LLDP, length 82 [|LLDP] 17:29:31.837953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.837953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.837953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.837953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.837953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.837953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.837953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.847957 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 LLDP, length 82 [|LLDP] 17:29:31.847957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.847957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0781 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.847957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.847957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.847957 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.847957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.847957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.857955 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.857955 LLDP, length 82 [|LLDP] 17:29:31.857955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.857955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.857955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.857955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.857955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.857955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.867953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.867953 LLDP, length 82 [|LLDP] 17:29:31.867954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.867954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.867954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.867954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.867954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.867954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.877952 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.877952 LLDP, length 82 [|LLDP] 17:29:31.877952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.877952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0797 f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.877952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.877952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.877952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.877952 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.877952 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.877953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.887953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 LLDP, length 82 [|LLDP] 17:29:31.887953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.887953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.887953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.887953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.887953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.887953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.887953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.897956 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.897956 LLDP, length 82 [|LLDP] 17:29:31.897956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.897956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a7 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.897956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.897956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.897956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.897956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.907941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.907941 LLDP, length 82 [|LLDP] 17:29:31.907941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.907941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ae d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.907941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.907941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.907941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.907941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.917937 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 LLDP, length 82 [|LLDP] 17:29:31.917937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.917937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.917937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.917937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.917937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.917937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.917937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.927930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 LLDP, length 82 [|LLDP] 17:29:31.927930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.927930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07be 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.927930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.927930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.927930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.927930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.927931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.937930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.937931 LLDP, length 82 [|LLDP] 17:29:31.937931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.937931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.937931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.937931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.937931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.937931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.947930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.947930 LLDP, length 82 [|LLDP] 17:29:31.947930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.947930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.957940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 LLDP, length 82 [|LLDP] 17:29:31.957940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.957940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d4 fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.957940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.957940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.957940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.957940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.957940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.967935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.967935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.967935 LLDP, length 82 [|LLDP] 17:29:31.967935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.967936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.967936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.967936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.967936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.967936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.967936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.977942 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.977942 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.977943 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.977943 LLDP, length 82 [|LLDP] 17:29:31.977943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.977943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e4 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.977943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.977943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.977943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.977943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.987935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.987935 LLDP, length 82 [|LLDP] 17:29:31.987935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.987936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07eb e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.987936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.987936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.987936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.987936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:31.997935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.997935 LLDP, length 82 [|LLDP] 17:29:31.997935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:31.997935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:31.997935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:31.997935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:31.997935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:31.997935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:31.997935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:31.997936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.008263 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.008263 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.008263 LLDP, length 82 [|LLDP] 17:29:32.008263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.008263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fb 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.008263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.008263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.008264 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.008264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.008264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.017934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.017934 LLDP, length 82 [|LLDP] 17:29:32.017935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.017935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.017935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.017935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.017935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.017935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.027932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.027932 LLDP, length 82 [|LLDP] 17:29:32.027932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.027932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.027932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.027932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.027932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.027933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.037944 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.037944 LLDP, length 82 [|LLDP] 17:29:32.037944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.037944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0812 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.037944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.037944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.037945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.037945 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.037945 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.037945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.047944 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 LLDP, length 82 [|LLDP] 17:29:32.047944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.047944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.047944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.047944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.047944 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.047944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.047944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.057940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.057940 LLDP, length 82 [|LLDP] 17:29:32.057940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.057940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0821 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.057940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.057940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.057940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.057940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.067933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.067934 LLDP, length 82 [|LLDP] 17:29:32.067934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.067934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0828 e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.067934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.067934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.067934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.067934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.077931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.077931 LLDP, length 82 [|LLDP] 17:29:32.077931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.077931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.077931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.077931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.077931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.077931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.077932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.077932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.087931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.087931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.087931 LLDP, length 82 [|LLDP] 17:29:32.087931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.087931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0838 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.087931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.087931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.087932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.087932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.087932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.097930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.097930 LLDP, length 82 [|LLDP] 17:29:32.097931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.097931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083f ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.097931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.097931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.097931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.097931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.107931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.107931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.107931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.107932 LLDP, length 82 [|LLDP] 17:29:32.107932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.107932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.107932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.107932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.107932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.107932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.117930 LLDP, length 82 [|LLDP] 17:29:32.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.117931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084f 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.117931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.117931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.117931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.117931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.117931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.117931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.127929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 LLDP, length 82 [|LLDP] 17:29:32.127929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.127929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.127929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.127929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.127929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.127929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.127930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.137931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.137931 LLDP, length 82 [|LLDP] 17:29:32.137932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.137932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.137932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.137932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.137932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.137932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.147971 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.147971 LLDP, length 82 [|LLDP] 17:29:32.147971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.147972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0865 f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.147972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.147972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.147972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.147972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.157953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.157953 LLDP, length 82 [|LLDP] 17:29:32.157953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.157953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.157954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.157954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.157954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.157954 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.157954 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.157954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.167935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.167935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.167936 LLDP, length 82 [|LLDP] 17:29:32.167936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.167936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0875 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.167936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.167936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.167936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.167936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.167936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.177932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.177932 LLDP, length 82 [|LLDP] 17:29:32.177932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.177932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087c d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.177932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.177932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.177932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.177933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.187933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.187934 LLDP, length 82 [|LLDP] 17:29:32.187934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.187934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.187934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.187934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.187934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.187934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.197930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.197930 LLDP, length 82 [|LLDP] 17:29:32.197931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.197931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088c 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.197931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.197931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.197931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.197931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.197931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.197931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.207930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.207930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.207930 LLDP, length 82 [|LLDP] 17:29:32.207930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.207930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.207930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.207930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.207931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.207931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.207931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.217932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.217932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.217933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.217933 LLDP, length 82 [|LLDP] 17:29:32.217933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.217933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.217933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.217933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.217933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.217933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.227933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.227933 LLDP, length 82 [|LLDP] 17:29:32.227933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.227933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a2 fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.227933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.227933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.227933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.227933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.237930 LLDP, length 82 [|LLDP] 17:29:32.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.237931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.237931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.237931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.247929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.247929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.247929 LLDP, length 82 [|LLDP] 17:29:32.247929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.247930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b2 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.247930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.247930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.247930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.247930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.247930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.257931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.257931 LLDP, length 82 [|LLDP] 17:29:32.257931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.257931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b9 deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.257931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.257931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.257931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.257931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.267932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.267932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.267933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.267933 LLDP, length 82 [|LLDP] 17:29:32.267933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.267933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.267933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.267933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.267933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.267933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.277931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 LLDP, length 82 [|LLDP] 17:29:32.277931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.277931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c9 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.277931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.277931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.277931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.277931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.277931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.287929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.287929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.287930 LLDP, length 82 [|LLDP] 17:29:32.287930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.287930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.287930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.287930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.287930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.287930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.287930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.297931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.297931 LLDP, length 82 [|LLDP] 17:29:32.297931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.297931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.297931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.297931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.297931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.297931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.307935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.307936 LLDP, length 82 [|LLDP] 17:29:32.307936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.307936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e0 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.307936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.307936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.307936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.307936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.317936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 LLDP, length 82 [|LLDP] 17:29:32.317936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.317936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.317936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.317936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.317936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.317936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.317936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.327934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 LLDP, length 82 [|LLDP] 17:29:32.327934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.327934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ef 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.327934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.327934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.327934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.327934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.327934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.337928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.337928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.337929 LLDP, length 82 [|LLDP] 17:29:32.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f6 e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.337929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.347932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.347933 LLDP, length 82 [|LLDP] 17:29:32.347933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.347933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.347933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.347933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.347933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.347933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.357931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.357931 LLDP, length 82 [|LLDP] 17:29:32.357931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.357931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0906 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.357931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.357931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.357932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.357932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.357932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.357932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.367932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 LLDP, length 82 [|LLDP] 17:29:32.367932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.367932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090d cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.367932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.367932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.367932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.367932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.367932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.377936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.377936 LLDP, length 82 [|LLDP] 17:29:32.377936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.377936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.377936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.377936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.377936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.377937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.387931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.387931 LLDP, length 82 [|LLDP] 17:29:32.387931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.387932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091d 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.387932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.387932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.387932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.387932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.397935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 LLDP, length 82 [|LLDP] 17:29:32.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.397935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.397935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.397935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.397935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.397935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.397935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.407934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.407934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.407934 LLDP, length 82 [|LLDP] 17:29:32.407935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.407935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092c 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.407935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.407935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.407935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.407935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.407935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.417936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.417936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.417937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.417937 LLDP, length 82 [|LLDP] 17:29:32.417937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.417937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0933 f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.417937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.417937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.417937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.417937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.427932 LLDP, length 82 [|LLDP] 17:29:32.427932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.427932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.427932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.437929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.437929 LLDP, length 82 [|LLDP] 17:29:32.437929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.437930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0943 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.437930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.437930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.437930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.437930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.437930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.437930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.447928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.447928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.447929 LLDP, length 82 [|LLDP] 17:29:32.447929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.447929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094a d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.447929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.447929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.447929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.447929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.447929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.457928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.457928 LLDP, length 82 [|LLDP] 17:29:32.457928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.457928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.457928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.457929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.457929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.457929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.467933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.467933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.467933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.467934 LLDP, length 82 [|LLDP] 17:29:32.467934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.467934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095a 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.467934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.467934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.467934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.467934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.477932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 LLDP, length 82 [|LLDP] 17:29:32.477932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.477932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.477932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.477932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.477932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.477932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.477932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 LLDP, length 82 [|LLDP] 17:29:32.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.487930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.487930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.487930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.487930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.487930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.497936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.497936 LLDP, length 82 [|LLDP] 17:29:32.497936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.497936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0970 f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.497936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.497936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.497936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.497936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.507930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.507930 LLDP, length 82 [|LLDP] 17:29:32.507931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.507931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.507931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.507931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.507931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.507931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.517933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 LLDP, length 82 [|LLDP] 17:29:32.517933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.517933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0980 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.517933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.517933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.517933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.517933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.517933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.527930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.527930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.527931 LLDP, length 82 [|LLDP] 17:29:32.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0987 dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.537933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.537933 LLDP, length 82 [|LLDP] 17:29:32.537933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.537933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.537933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.537933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.537933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.537934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.547931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.547931 LLDP, length 82 [|LLDP] 17:29:32.547931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.547932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0997 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.547932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.547932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.547932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.547932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.557928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.557928 LLDP, length 82 [|LLDP] 17:29:32.557928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.557928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.557928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.557928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.557928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.557928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.557929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.557929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.567932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 LLDP, length 82 [|LLDP] 17:29:32.567932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.567932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.567932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.567932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.567932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.567932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.567932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.577932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.577932 LLDP, length 82 [|LLDP] 17:29:32.577932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.577932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ae 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.577932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.577932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.577933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.577933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.587929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.587929 LLDP, length 82 [|LLDP] 17:29:32.587929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.587929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.587929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.587930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.587930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.587930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.597928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 LLDP, length 82 [|LLDP] 17:29:32.597928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.597928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bd 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.597928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.597928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.597928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.597928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.597928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.607930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 LLDP, length 82 [|LLDP] 17:29:32.607930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.607930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c4 e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.607930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.607930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.607930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.607930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.607930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.617933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.617933 LLDP, length 82 [|LLDP] 17:29:32.617934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.617934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.617934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.617934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.617934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.617934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.627934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.627934 LLDP, length 82 [|LLDP] 17:29:32.627934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.627934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d4 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.627934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.627934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.627934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.627934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.637931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 LLDP, length 82 [|LLDP] 17:29:32.637931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.637931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.637931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.637931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.637931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.637931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.637931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.647930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.647930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.647930 LLDP, length 82 [|LLDP] 17:29:32.647931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.647931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.647931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.647931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.647931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.647931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.647931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.657930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.657930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.657931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.657931 LLDP, length 82 [|LLDP] 17:29:32.657931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.657931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09eb 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.657931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.657931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.657931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.657931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.667931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.667931 LLDP, length 82 [|LLDP] 17:29:32.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.667932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.667932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.667932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.667932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.667932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.677932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 LLDP, length 82 [|LLDP] 17:29:32.677932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.677932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09fa 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.677932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.677932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.677932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.677932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.677932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.687926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.687926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.687927 LLDP, length 82 [|LLDP] 17:29:32.687927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.687927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a01 ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.687927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.687927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.687927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.687927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.687927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.697931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.697932 LLDP, length 82 [|LLDP] 17:29:32.697932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.697932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.697932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.697932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.697932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.697932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.707929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.707929 LLDP, length 82 [|LLDP] 17:29:32.707930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.707930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a11 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.707930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.707930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.707930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.707930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.717931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.717931 LLDP, length 82 [|LLDP] 17:29:32.717932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.717932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a18 d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.717932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.717932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.717932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.717932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.717932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.717932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.727930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.727930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.727930 LLDP, length 82 [|LLDP] 17:29:32.727930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.727930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.727931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.727931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.727931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.727931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.727931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.737930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.737930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.737931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.737931 LLDP, length 82 [|LLDP] 17:29:32.737931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.737931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a28 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.737931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.737931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.737931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.737931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.747929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.747929 LLDP, length 82 [|LLDP] 17:29:32.747929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.747929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.747929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.747929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.747930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.747930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.757928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 LLDP, length 82 [|LLDP] 17:29:32.757928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.757928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.757928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.757928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.767932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.767932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.767932 LLDP, length 82 [|LLDP] 17:29:32.767932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.767933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3e f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.767933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.767933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.767933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.767933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.767933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.777930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.777930 LLDP, length 82 [|LLDP] 17:29:32.777930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.777930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.777931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.777931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.777931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.777931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.787930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.787930 LLDP, length 82 [|LLDP] 17:29:32.787930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.787930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4e 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.787930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.787930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.787930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.787930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.797929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.797929 LLDP, length 82 [|LLDP] 17:29:32.797929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.797929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a55 db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.797929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.797929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.797929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.797929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.797930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.797930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.807929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.807929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.807929 LLDP, length 82 [|LLDP] 17:29:32.807929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.807929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.807929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.807929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.807930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.807930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.807930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.817929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.817929 LLDP, length 82 [|LLDP] 17:29:32.817929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.817930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a65 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.817930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.817930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.817930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.817930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.827932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.827932 LLDP, length 82 [|LLDP] 17:29:32.827932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.827932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.827932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.827932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.827932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.827932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.837930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 LLDP, length 82 [|LLDP] 17:29:32.837930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.837930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.837930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.837930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.837930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.837930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.837930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.847929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 LLDP, length 82 [|LLDP] 17:29:32.847929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.847929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7c 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.847929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.847929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.847929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.847929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.847929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.857950 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.857950 LLDP, length 82 [|LLDP] 17:29:32.857951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.857951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.857951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.857951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.857951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.857951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.867945 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.867945 LLDP, length 82 [|LLDP] 17:29:32.867945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.867945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8b 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.867945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.867945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.867946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.867946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.877936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.877936 LLDP, length 82 [|LLDP] 17:29:32.877936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.877936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a92 e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.877936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.877936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.877936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.877937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.877937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.877937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.887935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.887935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.887935 LLDP, length 82 [|LLDP] 17:29:32.887935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.887936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.887936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.887936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.887936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.887936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.887936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.897953 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.897953 LLDP, length 82 [|LLDP] 17:29:32.897953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.897953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa2 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.897953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.897953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.897953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.897954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.907955 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.907956 LLDP, length 82 [|LLDP] 17:29:32.907956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.907956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.907956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.907956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.907956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.907956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.917941 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.917941 LLDP, length 82 [|LLDP] 17:29:32.917941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.917941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.917941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.917941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.917941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.917941 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.917941 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.917942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.927933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 LLDP, length 82 [|LLDP] 17:29:32.927933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.927933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab9 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.927933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.927933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.927933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.927933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.927933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.937938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.937938 LLDP, length 82 [|LLDP] 17:29:32.937938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.937938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.937938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.937938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.937938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.937938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.947931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.947931 LLDP, length 82 [|LLDP] 17:29:32.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.947931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac8 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.947931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.947931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.947931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.947931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.957932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.957932 LLDP, length 82 [|LLDP] 17:29:32.957932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.957932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acf ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.957933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.957933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.957933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.957933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.957933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.957933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.967932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.967932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.967932 LLDP, length 82 [|LLDP] 17:29:32.967932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.967933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.967933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.967933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.967933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.967933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.967933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.977934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.977934 LLDP, length 82 [|LLDP] 17:29:32.977934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.977934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adf 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.977934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.977934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.977935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.977935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.987932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.987932 LLDP, length 82 [|LLDP] 17:29:32.987932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.987932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae6 d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.987932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.987932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.987933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.987933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:32.997927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.997927 LLDP, length 82 [|LLDP] 17:29:32.997927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:32.997927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:32.997927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:32.997928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:32.997928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:32.997928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:32.997928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:32.997928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.007930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 LLDP, length 82 [|LLDP] 17:29:33.007930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.007930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af6 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.007930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.007930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.007930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.007930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.007930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.017929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.017929 LLDP, length 82 [|LLDP] 17:29:33.017929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.017929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.017929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.017929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.017929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.017929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.027930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.027930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.027930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.027931 LLDP, length 82 [|LLDP] 17:29:33.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.027931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.027931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.027931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.027931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.037932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.037932 LLDP, length 82 [|LLDP] 17:29:33.037932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.037932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0c f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.037932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.037932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.037933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.037933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.037933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.037933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.047931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 LLDP, length 82 [|LLDP] 17:29:33.047931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.047931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.047931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.047931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.047931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.047931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.057928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.057928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.057928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.057929 LLDP, length 82 [|LLDP] 17:29:33.057929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.057929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1c 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.057929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.057929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.057929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.057929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.067928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.067928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.067929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.067929 LLDP, length 82 [|LLDP] 17:29:33.067929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.067929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b23 d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.067929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.067929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.067929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.067929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.077930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.077930 LLDP, length 82 [|LLDP] 17:29:33.077930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.077930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.077930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.077930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.077931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.077931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.077931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.077931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.087934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.087934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.087934 LLDP, length 82 [|LLDP] 17:29:33.087934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.087934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b33 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.087934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.087935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.087935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.087935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.087935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.097929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.097929 LLDP, length 82 [|LLDP] 17:29:33.097929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.097929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.097929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.097929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.097929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.097929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.107929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.107929 LLDP, length 82 [|LLDP] 17:29:33.107929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.107929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.107929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.107930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.107930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.107930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.117929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.117929 LLDP, length 82 [|LLDP] 17:29:33.117929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.117929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b49 ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.117930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.117930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.117930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.127932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 LLDP, length 82 [|LLDP] 17:29:33.127932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.127932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.127932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.127932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.127932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.127932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.127932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.137931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.137931 LLDP, length 82 [|LLDP] 17:29:33.137932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.137932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b59 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.137932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.137932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.137932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.137932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.147932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.147932 LLDP, length 82 [|LLDP] 17:29:33.147932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.147933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b60 e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.147933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.147933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.147933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.147933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.157931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 LLDP, length 82 [|LLDP] 17:29:33.157931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.157931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.157931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.157931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.157931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.157931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.157931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.167930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.167930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.167930 LLDP, length 82 [|LLDP] 17:29:33.167930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.167930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b70 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.167930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.167930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.167930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.167931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.167931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.177930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.177931 LLDP, length 82 [|LLDP] 17:29:33.177931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.177931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.177931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.177931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.177931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.177931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.187929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.187929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.187930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.187930 LLDP, length 82 [|LLDP] 17:29:33.187930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.187930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.187930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.187930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.187930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.187930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.197928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 LLDP, length 82 [|LLDP] 17:29:33.197928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.197928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b87 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.197928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.197928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.197928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.197928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.197928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.207929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.207929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.207929 LLDP, length 82 [|LLDP] 17:29:33.207929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.207929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.207929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.207929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.207930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.207930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.207930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.217928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.217928 LLDP, length 82 [|LLDP] 17:29:33.217928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.217928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b96 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.217928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.217928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.217928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.217928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.227931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.227931 LLDP, length 82 [|LLDP] 17:29:33.227931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.227931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9d ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.227931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.227931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.227931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.227931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 LLDP, length 82 [|LLDP] 17:29:33.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.237930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.237930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.247929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.247929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.247930 LLDP, length 82 [|LLDP] 17:29:33.247930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.247930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bad 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.247930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.247930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.247930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.247930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.247930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.257929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.257929 LLDP, length 82 [|LLDP] 17:29:33.257929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.257929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb4 cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.257929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.257929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.257929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.257929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.267928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.267928 LLDP, length 82 [|LLDP] 17:29:33.267929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.267929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.267929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.267929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.267929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.267929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.277933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.277933 LLDP, length 82 [|LLDP] 17:29:33.277933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.277933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc4 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.277933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.277933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.277934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.277934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.277934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.277934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.287928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 LLDP, length 82 [|LLDP] 17:29:33.287929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.287929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.287929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.287929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.287929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.287929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.287929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.297929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.297929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.297929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.297930 LLDP, length 82 [|LLDP] 17:29:33.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.297930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.297930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.297930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.307928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.307928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.307928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.307929 LLDP, length 82 [|LLDP] 17:29:33.307929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.307929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bda f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.307929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.307929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.307929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.307929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.317929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 LLDP, length 82 [|LLDP] 17:29:33.317929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.317929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.317929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.317929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.317929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.317929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.317929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.327930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.327930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.327930 LLDP, length 82 [|LLDP] 17:29:33.327930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bea 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.327931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.327931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.327931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.327931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.327931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.337931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.337931 LLDP, length 82 [|LLDP] 17:29:33.337931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.337931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf1 d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.337931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.337931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.337931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.337931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.347931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.347931 LLDP, length 82 [|LLDP] 17:29:33.347931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.347931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.347931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.347931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.347931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.347931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.357929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.357929 LLDP, length 82 [|LLDP] 17:29:33.357929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.357930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c01 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.357930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.357930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.357930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.357930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.357930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.357930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.367932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.367932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.367932 LLDP, length 82 [|LLDP] 17:29:33.367932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.367932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.367932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.367932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.367933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.367933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.367933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.377940 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.377940 LLDP, length 82 [|LLDP] 17:29:33.377940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.377940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.377940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.377940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.377940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.377940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.387934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.387934 LLDP, length 82 [|LLDP] 17:29:33.387934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.387934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c17 fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.387934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.387934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.387935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.387935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.397936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 LLDP, length 82 [|LLDP] 17:29:33.397937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.397937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.397937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.397937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.397937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.397937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.397937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.407928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 LLDP, length 82 [|LLDP] 17:29:33.407929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.407929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c27 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.407929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.407929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.407929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.407929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.407929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.417927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.417927 LLDP, length 82 [|LLDP] 17:29:33.417927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.417927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2e e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.417927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.417927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.417927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.417927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.427931 LLDP, length 82 [|LLDP] 17:29:33.427931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.427931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.427931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.437927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 LLDP, length 82 [|LLDP] 17:29:33.437927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.437927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3e 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.437927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.437927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.437927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.437927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.437927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.447928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.447928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.447928 LLDP, length 82 [|LLDP] 17:29:33.447928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.447928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.447929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.447929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.447929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.447929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.447929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.457928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.457928 LLDP, length 82 [|LLDP] 17:29:33.457928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.457929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.457929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.457929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.457929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.457929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.467928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.467928 LLDP, length 82 [|LLDP] 17:29:33.467928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.467928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c55 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.467929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.467929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.467929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.467929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.472207 LLDP, length 219: localhost 17:29:33.477931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.477931 LLDP, length 82 [|LLDP] 17:29:33.477931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.477931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.477931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.477931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.477932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.477932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.477932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.477932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.487936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.487936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.487936 LLDP, length 82 [|LLDP] 17:29:33.487936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.487936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c64 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.487936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.487937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.487937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.487937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.487937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.497931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.497931 LLDP, length 82 [|LLDP] 17:29:33.497931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.497931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6b ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.497931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.497931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.497931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.497931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.507929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.507929 LLDP, length 82 [|LLDP] 17:29:33.507929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.507929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.507929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.507929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.507930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.507930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.517929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.517929 LLDP, length 82 [|LLDP] 17:29:33.517929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.517929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7b 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.517929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.517929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.517929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.517929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.517929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.517930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.527931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 LLDP, length 82 [|LLDP] 17:29:33.527931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.527931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c82 cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.527931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.527931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.527931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.527931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.527931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.537929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.537929 LLDP, length 82 [|LLDP] 17:29:33.537929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.537929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.537929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.537929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.537929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.537929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.547927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.547928 LLDP, length 82 [|LLDP] 17:29:33.547928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.547928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c92 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.547928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.547928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.547928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.547928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.557929 LLDP, length 82 [|LLDP] 17:29:33.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.557929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.557930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.557930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.567928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 LLDP, length 82 [|LLDP] 17:29:33.567928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.567928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.567928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.567928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.567928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.567928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.567929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.577931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.577931 LLDP, length 82 [|LLDP] 17:29:33.577931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.577932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca8 f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.577932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.577932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.577932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.577932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.587928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.587928 LLDP, length 82 [|LLDP] 17:29:33.587928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.587928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.587928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.587928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.587929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.587929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.597931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.597931 LLDP, length 82 [|LLDP] 17:29:33.597931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.597932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb8 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.597932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.597932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.597932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.597932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.597932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.597932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.607929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 LLDP, length 82 [|LLDP] 17:29:33.607929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.607929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbf d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.607929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.607929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.607929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.607929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.607929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.617925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.617926 LLDP, length 82 [|LLDP] 17:29:33.617926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.617926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.617926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.617926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.617926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.617926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.627929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.627929 LLDP, length 82 [|LLDP] 17:29:33.627929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.627929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccf 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.627929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.627929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.627930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.627930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.637928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 LLDP, length 82 [|LLDP] 17:29:33.637928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.637928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 b9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.637928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.637928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.637928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.637928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.637928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.647929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 LLDP, length 82 [|LLDP] 17:29:33.647929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.647929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 5b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.647929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.647929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.647929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.647929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.647929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.657929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.657929 LLDP, length 82 [|LLDP] 17:29:33.657929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.657929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce5 fc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.657929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.657929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.657929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.657929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.667929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.667929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.667929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.667930 LLDP, length 82 [|LLDP] 17:29:33.667930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.667930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced 9d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.667930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.667930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.667930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.667930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.677930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.677930 LLDP, length 82 [|LLDP] 17:29:33.677930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.677930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf5 3e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.677930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.677930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.677931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.677931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.677931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.677931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.687928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.687928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.687928 LLDP, length 82 [|LLDP] 17:29:33.687928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.687928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfc df8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.687929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.687929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.687929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.687929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.687929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.697929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.697929 LLDP, length 82 [|LLDP] 17:29:33.697929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.697929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 80ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.697929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.697929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.697929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.697929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.707926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.707927 LLDP, length 82 [|LLDP] 17:29:33.707927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.707927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0c 21ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.707927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.707927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.707927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.707927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.717927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.717927 LLDP, length 82 [|LLDP] 17:29:33.717927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.717927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 c2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.717927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.717927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.717927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.717927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.717927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.717928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.727927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 LLDP, length 82 [|LLDP] 17:29:33.727927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.727927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 640e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.727927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.727927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.727927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.727927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.727927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.737928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.737928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.737928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.737929 LLDP, length 82 [|LLDP] 17:29:33.737929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.737929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d23 052e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.737929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.737929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.737929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.737929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.747927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.747927 LLDP, length 82 [|LLDP] 17:29:33.747927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.747927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a a64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.747927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.747927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.747927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.747928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.757927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.757927 LLDP, length 82 [|LLDP] 17:29:33.757927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.757927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d32 476e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.757927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.757927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.757928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.757928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.757928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.757928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.767928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.767928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.767928 LLDP, length 82 [|LLDP] 17:29:33.767928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.767928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d39 e88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.767928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.767928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.767928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.767929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.767929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.777926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.777926 LLDP, length 82 [|LLDP] 17:29:33.777926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.777926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 89ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.777926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.777926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.777926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.777926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.787929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.787929 LLDP, length 82 [|LLDP] 17:29:33.787929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.787929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d49 2ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.787930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.787930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.787930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.787930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.797925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 LLDP, length 82 [|LLDP] 17:29:33.797926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.797926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d50 cbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.797926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.797926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.797926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.797926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.797926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.807927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 LLDP, length 82 [|LLDP] 17:29:33.807927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.807927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 6d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.807927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.807927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.807927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.807927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.807927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.817927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.817928 LLDP, length 82 [|LLDP] 17:29:33.817928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.817928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d60 0e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.817928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.817928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.817928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.817928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.827925 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.827925 LLDP, length 82 [|LLDP] 17:29:33.827925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.827925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 af4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.827925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.827925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.827925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.827925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.837928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.837928 LLDP, length 82 [|LLDP] 17:29:33.837928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.837928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6f 506e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.837928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.837928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.837928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.837928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.837928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.837929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.847927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 LLDP, length 82 [|LLDP] 17:29:33.847927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.847927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d76 f18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.847927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.847927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.847927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.847927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.847927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.857934 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.857935 LLDP, length 82 [|LLDP] 17:29:33.857935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.857935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e 92ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.857935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.857935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.857935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.857935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.867932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.867932 LLDP, length 82 [|LLDP] 17:29:33.867932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.867932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d86 33ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.867932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.867932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.867932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.867932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.877943 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 LLDP, length 82 [|LLDP] 17:29:33.877944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.877944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8d d4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.877944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.877944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.877944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.877944 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.877944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.887947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 LLDP, length 82 [|LLDP] 17:29:33.887947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.887947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 760e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.887947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.887947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.887947 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.887947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.887947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.897939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.897939 LLDP, length 82 [|LLDP] 17:29:33.897939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.897939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9d 172e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.897939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.897940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.897940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.897940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.907933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.907933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.907934 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.907934 LLDP, length 82 [|LLDP] 17:29:33.907934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.907934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 b84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.907934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.907934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.907934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.907934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.917929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.917929 LLDP, length 82 [|LLDP] 17:29:33.917930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.917930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 596e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.917930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.917930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.917930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.917930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.917930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.917930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.927929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.927929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.927930 LLDP, length 82 [|LLDP] 17:29:33.927930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.927930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db3 fa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.927930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.927930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.927930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.927930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.927930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.937936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.937936 LLDP, length 82 [|LLDP] 17:29:33.937936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.937936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb 9bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.937936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.937937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.937937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.937937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.947929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.947929 LLDP, length 82 [|LLDP] 17:29:33.947929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.947929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc3 3cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.947929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.947930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.947930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.947930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.957928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.957928 LLDP, length 82 [|LLDP] 17:29:33.957928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.957928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dca ddee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.957928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.957928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.957929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.957929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.957929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.957929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.967938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.967938 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.967938 LLDP, length 82 [|LLDP] 17:29:33.967938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.967938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 7f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.967938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.967938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.967938 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.967939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.967939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.977929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.977929 LLDP, length 82 [|LLDP] 17:29:33.977929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.977929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dda 202e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.977929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.977929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.977929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.977929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.987932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.987932 LLDP, length 82 [|LLDP] 17:29:33.987933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.987933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 c14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.987933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.987933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.987933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.987933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:33.997947 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.997947 LLDP, length 82 [|LLDP] 17:29:33.997947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:33.997947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 626e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:33.997948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:33.997948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:33.997948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:33.997948 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:33.997948 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:33.997948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.007931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.007931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.007931 LLDP, length 82 [|LLDP] 17:29:34.007931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.007931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df1 038e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.007932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.007932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.007932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.007932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.007932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.017928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.017928 LLDP, length 82 [|LLDP] 17:29:34.017928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.017928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 a4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.017928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.017928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.017928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.017928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.027931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.027931 LLDP, length 82 [|LLDP] 17:29:34.027931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.027931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e00 45ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.027931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.027931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.027931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.027931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.037930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 LLDP, length 82 [|LLDP] 17:29:34.037930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.037930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e07 e6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.037930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.037930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.037930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.037930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.037930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.047930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 LLDP, length 82 [|LLDP] 17:29:34.047930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.047930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f 880e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.047930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.047930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.047930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.047930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.047931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.057929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.057929 LLDP, length 82 [|LLDP] 17:29:34.057929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.057929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e17 292e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.057929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.057929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.057929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.057929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.067928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.067928 LLDP, length 82 [|LLDP] 17:29:34.067929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.067929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1e ca4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.067929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.067929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.067929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.067929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.077926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 LLDP, length 82 [|LLDP] 17:29:34.077927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.077927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 6b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.077927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.077927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.077927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.077927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.077927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.087932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 LLDP, length 82 [|LLDP] 17:29:34.087932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.087932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2e 0c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.087932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.087932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.087932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.087932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.087932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.097932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.097933 LLDP, length 82 [|LLDP] 17:29:34.097933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.097933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 adae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.097933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.097933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.097933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.097933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.107930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.107930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.107931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.107931 LLDP, length 82 [|LLDP] 17:29:34.107931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.107931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3d 4ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.107931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.107931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.107931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.107931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.117930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 LLDP, length 82 [|LLDP] 17:29:34.117930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.117930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e44 efee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.117930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.117930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.117930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.117930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.117930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.127930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 LLDP, length 82 [|LLDP] 17:29:34.127930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.127930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c 910e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.127930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.127930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.127930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.127930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.127930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.137930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.137930 LLDP, length 82 [|LLDP] 17:29:34.137930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.137930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e54 322e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.137931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.137931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.137931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.137931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.147929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.147929 LLDP, length 82 [|LLDP] 17:29:34.147929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.147929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5b d34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.147929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.147930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.147930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.147930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.157929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.157929 LLDP, length 82 [|LLDP] 17:29:34.157930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.157930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 746e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.157930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.157930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.157930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.157930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.157930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.157930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.167928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.167928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.167928 LLDP, length 82 [|LLDP] 17:29:34.167928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.167929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6b 158e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.167929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.167929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.167929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.167929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.167929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.177928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.177928 LLDP, length 82 [|LLDP] 17:29:34.177928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.177928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 b6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.177928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.177928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.177928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.177928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.187929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.187930 LLDP, length 82 [|LLDP] 17:29:34.187930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.187930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 57ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.187930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.187930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.187930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.187930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.197931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.197931 LLDP, length 82 [|LLDP] 17:29:34.197931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.197931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e81 f8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.197931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.197931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.197932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.197932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.197932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.197932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.207927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.207927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.207927 LLDP, length 82 [|LLDP] 17:29:34.207927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.207928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 9a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.207928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.207928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.207928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.207928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.207928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.217928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.217928 LLDP, length 82 [|LLDP] 17:29:34.217928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.217928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e91 3b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.217929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.217929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.217929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.217929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.227928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.227928 LLDP, length 82 [|LLDP] 17:29:34.227928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.227929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e98 dc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.227929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.227929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.227929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.227929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.237930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 LLDP, length 82 [|LLDP] 17:29:34.237930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.237930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 7d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.237930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.237930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.237930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.237930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.237930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.247927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 LLDP, length 82 [|LLDP] 17:29:34.247927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.247927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea8 1e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.247927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.247927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.247927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.247927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.247927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.257927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.257927 LLDP, length 82 [|LLDP] 17:29:34.257927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.257928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf bfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.257928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.257928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.257928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.257928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.267927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.267927 LLDP, length 82 [|LLDP] 17:29:34.267927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.267927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 60ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.267927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.267927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.267927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.267927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.277926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.277926 LLDP, length 82 [|LLDP] 17:29:34.277926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.277926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebf 01ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.277927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.277927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.277927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.277927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.277927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.277927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.287930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 LLDP, length 82 [|LLDP] 17:29:34.287930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.287930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 a30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.287930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.287930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.287930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.287930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.287930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.297929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.297929 LLDP, length 82 [|LLDP] 17:29:34.297930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.297930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ece 442e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.297930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.297930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.297930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.297930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.307928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.307928 LLDP, length 82 [|LLDP] 17:29:34.307928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.307928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed5 e54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.307928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.307928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.307928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.307929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.317928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 LLDP, length 82 [|LLDP] 17:29:34.317928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.317928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd 866e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.317928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.317928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.317928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.317928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.317928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.327928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 LLDP, length 82 [|LLDP] 17:29:34.327929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.327929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee5 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.327929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.327929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.327929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.327929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.327929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.337928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.337929 LLDP, length 82 [|LLDP] 17:29:34.337929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.337929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec c8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.337929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.337929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.337929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.337929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.347931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.347931 LLDP, length 82 [|LLDP] 17:29:34.347931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.347931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 69ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.347931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.347932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.347932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.347932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.357927 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 LLDP, length 82 [|LLDP] 17:29:34.357927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.357927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efc 0aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.357927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.357927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.357927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.357927 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.357927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.367926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.367926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.367926 LLDP, length 82 [|LLDP] 17:29:34.367926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.367926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 ac0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.367927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.367927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.367927 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.367927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.367927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.377926 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.377926 LLDP, length 82 [|LLDP] 17:29:34.377926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.377926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0b 4d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.377926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.377926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.377926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.377926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.387929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.387930 LLDP, length 82 [|LLDP] 17:29:34.387930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.387930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f12 ee4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.387930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.387930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.387930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.387930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.397962 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 LLDP, length 82 [|LLDP] 17:29:34.397962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.397962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a 8f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.397962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.397962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.397962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.397962 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.397962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.407965 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.407965 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.407965 LLDP, length 82 [|LLDP] 17:29:34.407965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.407965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f22 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.407966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.407966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.407966 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.407966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.407966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.417936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.417936 LLDP, length 82 [|LLDP] 17:29:34.417936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.417936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f29 d1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.417936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.417936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.417936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.417936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.427931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.427932 LLDP, length 82 [|LLDP] 17:29:34.427932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.427932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 72ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.427932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.427932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.427932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.427932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.437942 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.437942 LLDP, length 82 [|LLDP] 17:29:34.437942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.437942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f39 13ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.437943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.437943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.437943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.437943 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.437943 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.437943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.447930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.447930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.447931 LLDP, length 82 [|LLDP] 17:29:34.447931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.447931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 b50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.447931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.447931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.447931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.447931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.447931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.457931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.457932 LLDP, length 82 [|LLDP] 17:29:34.457932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.457932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 562e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.457932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.457932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.457932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.457932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.467931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.467931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.467932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.467932 LLDP, length 82 [|LLDP] 17:29:34.467932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.467932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4f f74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.467932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.467932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.467932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.467932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.477939 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.477939 LLDP, length 82 [|LLDP] 17:29:34.477939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.477939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 986e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.477939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.477939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.477939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.477939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.477939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.477940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.487930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.487930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.487930 LLDP, length 82 [|LLDP] 17:29:34.487930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.487930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5f 398e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.487931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.487931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.487931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.487931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.487931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.497933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.497933 LLDP, length 82 [|LLDP] 17:29:34.497934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.497934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f66 daae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.497934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.497934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.497934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.497934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.507933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.507933 LLDP, length 82 [|LLDP] 17:29:34.507933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.507933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e 7bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.507933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.507933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.507933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.507933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.517929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.517929 LLDP, length 82 [|LLDP] 17:29:34.517929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.517929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f76 1cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.517929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.517929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.517930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.517930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.517930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.517930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.527932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 LLDP, length 82 [|LLDP] 17:29:34.527932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.527932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d be0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.527932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.527932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.527932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.527932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.527932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.537932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.537932 LLDP, length 82 [|LLDP] 17:29:34.537932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.537932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 5f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.537932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.537932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.537932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.537932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.547933 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.547933 LLDP, length 82 [|LLDP] 17:29:34.547933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.547933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8d 004e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.547933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.547933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.547933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.547933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.557929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.557929 LLDP, length 82 [|LLDP] 17:29:34.557929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.557929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 a16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.557929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.557929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.557929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.557930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.557930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.557930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.567931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 LLDP, length 82 [|LLDP] 17:29:34.567931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.567931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9c 428e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.567931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.567931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.567931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.567931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.567931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.577930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.577930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.577931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.577931 LLDP, length 82 [|LLDP] 17:29:34.577931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.577931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa3 e3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.577931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.577931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.577931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.577931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.587928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.587928 LLDP, length 82 [|LLDP] 17:29:34.587928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.587928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab 84ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.587928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.587928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.587928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.587928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.597931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.597931 LLDP, length 82 [|LLDP] 17:29:34.597932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.597932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb3 25ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.597932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.597932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.597932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.597932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.597932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.597932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.607930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.607930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.607930 LLDP, length 82 [|LLDP] 17:29:34.607930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.607930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba c70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.607931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.607931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.607931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.607931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.607931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.617935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.617935 LLDP, length 82 [|LLDP] 17:29:34.617935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.617935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 682e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.617935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.617935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.617935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.617935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.627931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.627931 LLDP, length 82 [|LLDP] 17:29:34.627931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.627932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fca 094e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.627932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.627932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.627932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.627932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.637931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.637931 LLDP, length 82 [|LLDP] 17:29:34.637931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.637931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 aa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.637931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.637931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.637931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.637931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.637931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.637932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.647932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.647932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.647932 LLDP, length 82 [|LLDP] 17:29:34.647932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.647932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd9 4b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.647932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.647932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.647933 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.647933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.647933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.657931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.657931 LLDP, length 82 [|LLDP] 17:29:34.657931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.657931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe0 ecae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.657931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.657931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.657931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.657931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.667930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.667930 LLDP, length 82 [|LLDP] 17:29:34.667931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.667931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 8dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.667931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.667931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.667931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.667931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.677929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.677929 LLDP, length 82 [|LLDP] 17:29:34.677929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.677929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff0 2eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.677930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.677930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.677930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.677930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.677930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.687929 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.687929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.687929 LLDP, length 82 [|LLDP] 17:29:34.687929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.687930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff7 d00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.687930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.687930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.687930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.687930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.687930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.697930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.697931 LLDP, length 82 [|LLDP] 17:29:34.697931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.697931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff 712e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.697931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.697931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.697931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.697931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.707936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.707936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.707936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.707937 LLDP, length 82 [|LLDP] 17:29:34.707937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.707937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1007 124e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.707937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.707937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.707937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.707937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.717938 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.717938 LLDP, length 82 [|LLDP] 17:29:34.717938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.717939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e b36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.717939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.717939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.717939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.717939 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.717939 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.717939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.727936 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 LLDP, length 82 [|LLDP] 17:29:34.727937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.727937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 548e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.727937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.727937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.727937 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.727937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.727937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.737930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.737930 LLDP, length 82 [|LLDP] 17:29:34.737930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.737930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101d f5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.737930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.737931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.737931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.737931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.747932 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.747932 LLDP, length 82 [|LLDP] 17:29:34.747933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.747933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 96ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.747933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.747933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.747933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.747933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.757928 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 LLDP, length 82 [|LLDP] 17:29:34.757929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.757929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102d 37ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.757929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.757929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.757929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.757929 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.757929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.767935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.767935 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.767935 LLDP, length 82 [|LLDP] 17:29:34.767935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.767935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1034 d90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.767936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.767936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.767936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.767936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.767936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.777935 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.777936 LLDP, length 82 [|LLDP] 17:29:34.777936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.777936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c 7a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.777936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.777936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.777936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.777936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.787930 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.787930 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.787930 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.787931 LLDP, length 82 [|LLDP] 17:29:34.787931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.787931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1044 1b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.787931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.787931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.787931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.787931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:29:34.797931 IP 1.1.1.2.14525 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.797931 LLDP, length 82 [|LLDP] 17:29:34.797932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:29:34.797932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b bc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:29:34.797932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:29:34.797932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:29:34.797932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:29:34.797932 IP 192.168.1.1.21343 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:29:34.797932 IP 1.1.1.2.63744 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:29:34.797932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4371 packets captured 4371 packets received by filter 0 packets dropped by kernel 874 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:29:43 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":227,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:29:44 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:29:45 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":227,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif 251.52
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2269' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.2, port 59330 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:29:45 PM UTC INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg2... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a02080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI BridgedLLDP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI LACPDU SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4ToMe SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Request_BC SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Reply SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Broadcast SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_SSH SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_Telnet SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_ICMP_Request SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DCHP_BC SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Reserved_MC SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_OSPFIGP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_VRRP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_IGMP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_BGP SIP-DIP N/A Tx 443 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG agg2:Logger.py:156 17:33:42.247474 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.247474 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.247474 LLDP, length 82 [|LLDP] 17:33:42.247474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.247474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.247474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033d bede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.247474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.247474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.247475 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.247475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.247475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.247475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.247475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.247475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.247475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.257441 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 LLDP, length 82 [|LLDP] 17:33:42.257441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.257441 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.257441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.257442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.257442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0345 5ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.257442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.257442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.257442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.257442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.257442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.257442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.267427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.267427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.267427 LLDP, length 82 [|LLDP] 17:33:42.267427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.267427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.267427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 011e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.267427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.267427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.267428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.267428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.267428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.267428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.267428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.277424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.277425 LLDP, length 82 [|LLDP] 17:33:42.277425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.277425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.277425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0354 a23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.277425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.277425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.277425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.277425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.277425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.277425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.287431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.287431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.287431 LLDP, length 82 [|LLDP] 17:33:42.287432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.287432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.287432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.287432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.287432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.287432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.287432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.287432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.287432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.287432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.287432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.287432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.297431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 LLDP, length 82 [|LLDP] 17:33:42.297431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.297431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.297431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0363 e47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.297431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.297431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.297431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.297431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.297431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.297432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.297432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.297432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.307422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 LLDP, length 82 [|LLDP] 17:33:42.307423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.307423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.307423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036b 859e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.307423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.307423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.307423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.307423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.307423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.307423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.317422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 LLDP, length 82 [|LLDP] 17:33:42.317422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.317422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.317422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 26be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.317422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.317422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.317423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.317423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.317423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.327426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 LLDP, length 82 [|LLDP] 17:33:42.327426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.327426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.327426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037a c7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.327426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.327426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.327426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.327426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.327426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.327427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.337431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.337431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.337432 LLDP, length 82 [|LLDP] 17:33:42.337432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.337432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.337432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.337432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.337432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.337432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 68fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.337432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.337432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.337432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.337432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.337432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.337432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.347424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 LLDP, length 82 [|LLDP] 17:33:42.347424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.347424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.347424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 0a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.347424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.347424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.347424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.347424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.347424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.347425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.347425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.347425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.357433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 LLDP, length 82 [|LLDP] 17:33:42.357433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.357433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.357433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0391 ab3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.357433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.357433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.357433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.357433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.357433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.357433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.357433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.357433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.367423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 LLDP, length 82 [|LLDP] 17:33:42.367423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.367423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.367423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.367423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 4c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.367423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.367423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.367424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.367424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.367424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.377424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.377424 LLDP, length 82 [|LLDP] 17:33:42.377424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.377424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.377424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a0 ed7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.377425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.377425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.377425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.377425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.377425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.377425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.387424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.387424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.387425 LLDP, length 82 [|LLDP] 17:33:42.387425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.387425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.387425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a8 8e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.387425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.387425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.387425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.387425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.387425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.387425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.387425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.387425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.387425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.397428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 LLDP, length 82 [|LLDP] 17:33:42.397428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.397428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.397428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 2fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.397428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.397428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.397428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.397428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.397428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.397429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.397429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.407423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.407423 LLDP, length 82 [|LLDP] 17:33:42.407423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.407423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.407423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b7 d0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.407423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.407424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.407424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.407424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.407424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.407424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.407424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.407424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.407424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.407424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.417428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.417428 LLDP, length 82 [|LLDP] 17:33:42.417428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.417428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.417429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.417429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.417429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.417429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.417429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf 71fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.417429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.417429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.417429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.417429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.417429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.417429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.427422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 LLDP, length 82 [|LLDP] 17:33:42.427422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.427422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.427422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 131e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.427422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.427422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.427422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.427422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.427422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.427423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.427423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.427423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.437432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 LLDP, length 82 [|LLDP] 17:33:42.437432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.437432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.437432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ce b43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.437432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.437432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.437432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.437433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.437433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.437433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.437433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.437433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.447429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 LLDP, length 82 [|LLDP] 17:33:42.447429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.447429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.447429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.447429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 555e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.447430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.447430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.447430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.447430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.447430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.447430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.457423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.457423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.457423 LLDP, length 82 [|LLDP] 17:33:42.457423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.457423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.457423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03dd f67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.457423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.457424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.457424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.457424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.457424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.457424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.457424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.457424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.457424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.467422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.467422 LLDP, length 82 [|LLDP] 17:33:42.467422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.467422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.467422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e5 979e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.467422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.467422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.467423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.467423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.467423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.467423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.467423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.467423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.467423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.467423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.477431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.477431 LLDP, length 82 [|LLDP] 17:33:42.477431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.477431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.477431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed 38be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.477431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.477431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.477432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.477432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.477432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.477432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.477432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.477432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.477432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.477432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.487423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.487423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.487423 LLDP, length 82 [|LLDP] 17:33:42.487423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.487424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.487424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f4 d9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.487424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.487424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.487424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.487424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.487424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.487424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.487424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.487424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.487424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.497426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 LLDP, length 82 [|LLDP] 17:33:42.497426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.497426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.497426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.497426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.497426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fc 7afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.497427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.497427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.497427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.497427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.497427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.497427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.507421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 LLDP, length 82 [|LLDP] 17:33:42.507421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.507421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.507421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 1c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.507421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.507421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.507422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.507422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.507422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.507422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.507422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.507422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.517423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 LLDP, length 82 [|LLDP] 17:33:42.517423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.517423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.517423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040b bd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.517423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.517423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.517423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.517424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.517424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.517424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.517424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.527421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.527421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.527421 LLDP, length 82 [|LLDP] 17:33:42.527421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.527421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.527421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.527422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.527422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.527422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 5e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.527422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.527422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.527422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.527422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.527422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.527422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.537423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 LLDP, length 82 [|LLDP] 17:33:42.537423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.537423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.537423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041a ff7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.537423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.537423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.537423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.537424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.537424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.537424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.547425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.547425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.547425 LLDP, length 82 [|LLDP] 17:33:42.547425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.547425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.547425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0422 a09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.547425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.547425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.547426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.547426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.547426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.547426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.547426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.547426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.547426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.557422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 LLDP, length 82 [|LLDP] 17:33:42.557423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.557423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.557423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a 41be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.557423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.557423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.557423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.557423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.557423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.557423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.567423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.567423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.567424 LLDP, length 82 [|LLDP] 17:33:42.567424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.567424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.567424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0431 e2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.567424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.567424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.567424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.567424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.567424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.567424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.567424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.577424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 LLDP, length 82 [|LLDP] 17:33:42.577424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.577424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.577424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.577424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.577425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0439 83fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.577425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.577425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.577425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.577425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.577425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.577425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.587421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.587421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.587421 LLDP, length 82 [|LLDP] 17:33:42.587421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.587421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.587422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 251e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.587422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.587422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.587422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.587422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.587422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.587422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.587422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.587422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.587422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.597427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.597427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.597427 LLDP, length 82 [|LLDP] 17:33:42.597427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.597427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.597427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0448 c63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.597427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.597427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.597428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.597428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.597428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.597428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.597428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.597428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.597428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.607422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.607422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.607423 LLDP, length 82 [|LLDP] 17:33:42.607423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.607423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.607423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.607423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.607423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.607423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 675e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.607423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.607423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.607423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.607423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.607423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.607423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.617422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.617422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.617422 LLDP, length 82 [|LLDP] 17:33:42.617422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.617423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.617423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 087e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.617423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.617423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.617423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.617423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.617423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.617423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.617423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.617423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.617423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.627421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.627421 LLDP, length 82 [|LLDP] 17:33:42.627421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.627421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.627421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045f a99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.627421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.627421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.627421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.627421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.627421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.627421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.627422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.627422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.627422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.627422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.637421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 LLDP, length 82 [|LLDP] 17:33:42.637421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.637421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.637421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 4abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.637421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.637421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.637421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.637421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.637422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.637422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.637422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.637422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.647446 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 LLDP, length 82 [|LLDP] 17:33:42.647446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.647446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.647446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046e ebde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.647446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.647446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.647446 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.647446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.647447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.647447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.647447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.647447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.657437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.657437 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.657438 LLDP, length 82 [|LLDP] 17:33:42.657438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.657438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.657438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.657438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.657438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.657438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0476 8cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.657438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.657438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.657438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.657438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.657438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.657438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.667427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.667427 LLDP, length 82 [|LLDP] 17:33:42.667427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.667427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.667427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e 2e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.667427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.667428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.667428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.667428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.667428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.667428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.667428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.667428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.667428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.667428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.677425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.677425 LLDP, length 82 [|LLDP] 17:33:42.677425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.677425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.677425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0485 cf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.677425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.677425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.677425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.677425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.677426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.677426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.677426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.677426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.677426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.677426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.687423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 LLDP, length 82 [|LLDP] 17:33:42.687424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.687424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.687424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.687424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.687424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d 705e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.687424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.687424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.687424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.687425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.687425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.697427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 LLDP, length 82 [|LLDP] 17:33:42.697427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.697427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.697427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 117e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.697427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.697427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.697427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.697428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.697428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.697428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.697428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.697428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.707424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 LLDP, length 82 [|LLDP] 17:33:42.707424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.707424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.707424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049c b29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.707424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.707424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.707424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.707424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.707425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.707425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.717424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.717424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.717424 LLDP, length 82 [|LLDP] 17:33:42.717424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.717424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.717424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 53be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.717424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.717425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.717425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.717425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.717425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.717425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.717425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.727421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 LLDP, length 82 [|LLDP] 17:33:42.727422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.727422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.727422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ab f4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.727422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.727422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.727422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.727422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.727422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.727422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.727422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.727422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.737425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 LLDP, length 82 [|LLDP] 17:33:42.737425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.737425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.737425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.737425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.737425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b3 95fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.737425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.737425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.737425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.737425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.737426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.737426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.747427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.747427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.747427 LLDP, length 82 [|LLDP] 17:33:42.747427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.747427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.747427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb 371e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.747427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.747428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.747428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.747428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.747428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.747428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.747428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.757424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 LLDP, length 82 [|LLDP] 17:33:42.757424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.757424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.757424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c2 d83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.757424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.757424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.757424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.757425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.757425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.757425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.757425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 LLDP, length 82 [|LLDP] 17:33:42.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ca 795e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.777425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 LLDP, length 82 [|LLDP] 17:33:42.777426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.777426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.777426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 1a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.777426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.777426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.777426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.777426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.777426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.777426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.787423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.787423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.787423 LLDP, length 82 [|LLDP] 17:33:42.787424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.787424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.787424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d9 bb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.787424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.787424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.787424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.787424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.787424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.787424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.787424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.787424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.787424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.797425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 LLDP, length 82 [|LLDP] 17:33:42.797426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.797426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.797426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 5cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.797426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.797426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.797426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.797426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.797426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.797426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.807425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.807425 LLDP, length 82 [|LLDP] 17:33:42.807425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.807425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.807426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e8 fdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.807426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.807426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.807426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.807426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.807426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.807426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.807426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.817423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 LLDP, length 82 [|LLDP] 17:33:42.817423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.817423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.817423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.817423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f0 9efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.817423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.817423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.817423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.817423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.817424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.827422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.827422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.827422 LLDP, length 82 [|LLDP] 17:33:42.827422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.827422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.827423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 401e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.827423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.827423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.827423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.827423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.827423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.827423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.827423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.827423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.827423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.837423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.837423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.837423 LLDP, length 82 [|LLDP] 17:33:42.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ff e13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.837424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.837424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.837424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.837424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.847424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.847424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.847424 LLDP, length 82 [|LLDP] 17:33:42.847425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.847425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.847425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.847425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.847425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.847425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0507 825e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.847425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.847425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.847425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.847425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.847425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.847425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.857421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.857421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.857422 LLDP, length 82 [|LLDP] 17:33:42.857422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.857422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.857422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f 237e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.857422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.857422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.857422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.857422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.857422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.857422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.857422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.867423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.867423 LLDP, length 82 [|LLDP] 17:33:42.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.867423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0516 c49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.877426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 LLDP, length 82 [|LLDP] 17:33:42.877426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.877426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.877426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e 65be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.877426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.877426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.877426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.877426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.877427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.877427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.887424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.887424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.887425 LLDP, length 82 [|LLDP] 17:33:42.887425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.887425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.887425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 06de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.887425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.887425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.887425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.887425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.887425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.887425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.887425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.897464 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 LLDP, length 82 [|LLDP] 17:33:42.897464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.897464 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.897464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.897464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.897464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052d a7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.897465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.897465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.897465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.897465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.897465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.897465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.907459 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 LLDP, length 82 [|LLDP] 17:33:42.907459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.907459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.907459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 491e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.907459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.907459 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.907459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.907459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.907459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.907459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.907459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.907460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.917444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.917444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.917445 LLDP, length 82 [|LLDP] 17:33:42.917445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.917445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.917445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053c ea3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.917445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.917445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.917445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.917445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.917445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.917445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.917445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.917445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.917445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.927425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.927425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.927425 LLDP, length 82 [|LLDP] 17:33:42.927425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.927425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.927426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.927426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.927426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0544 8b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.927426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.927426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.927426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.927426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.927426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.937423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.937423 LLDP, length 82 [|LLDP] 17:33:42.937423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.937423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.937423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c 2c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.937423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.937423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.937424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.937424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.937424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.937424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.937424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.947427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 LLDP, length 82 [|LLDP] 17:33:42.947427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.947427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.947427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0553 cd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.947427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.947427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.947427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.947428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.947428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.947428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.947428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.957424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 LLDP, length 82 [|LLDP] 17:33:42.957424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.957424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.957424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b 6ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.957424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.957425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.957425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.957425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.957425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.967424 LLDP, length 82 [|LLDP] 17:33:42.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.967425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.967425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 0fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.967425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.967425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.967425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.977422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 LLDP, length 82 [|LLDP] 17:33:42.977423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.977423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.977423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.977423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056a b0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.977423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.977423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.977423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.977423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.977423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.987431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 LLDP, length 82 [|LLDP] 17:33:42.987432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.987432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.987432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 521e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.987432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.987432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.987432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.987432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.987432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.987432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.987432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.987432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.997429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 LLDP, length 82 [|LLDP] 17:33:42.997429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.997429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.997429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0579 f33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.997429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.997429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.997429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.997429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.997430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.997430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.997430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.997430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.007428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 LLDP, length 82 [|LLDP] 17:33:43.007429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.007429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.007429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.007429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.007429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0581 945e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.007429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.007429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.007429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.007429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.007429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.007429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.017425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.017425 LLDP, length 82 [|LLDP] 17:33:43.017425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.017425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.017425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 357e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.017425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.017425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.017425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.017425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.017425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.017426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.017426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.017426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.017426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.027424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.027424 LLDP, length 82 [|LLDP] 17:33:43.027424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.027424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.027424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0590 d69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.027424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.027424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.027425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.027425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.027425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.027425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.027425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.027425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.037422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 LLDP, length 82 [|LLDP] 17:33:43.037422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.037422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.037422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.037422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.037422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.037422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.037422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.037423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.037423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.037423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.037423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.047427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 LLDP, length 82 [|LLDP] 17:33:43.047427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.047427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.047427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 18de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.047427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.047427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.047427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.047428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.047428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.047428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.057422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 LLDP, length 82 [|LLDP] 17:33:43.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a7 b9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.057423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.057423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.057423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.067425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 LLDP, length 82 [|LLDP] 17:33:43.067425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.067425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.067425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af 5b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.067425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.067425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.067426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.067426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.067426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.067426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.067426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.067426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.077423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 LLDP, length 82 [|LLDP] 17:33:43.077423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.077423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.077423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b6 fc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.077423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.077423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.077423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.077423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.077423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.077424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.077424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.087422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.087422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.087422 LLDP, length 82 [|LLDP] 17:33:43.087423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.087423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.087423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.087423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.087423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05be 9d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.087423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.087423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.087423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.087423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.087423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.097444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.097444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.097444 LLDP, length 82 [|LLDP] 17:33:43.097444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.097444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.097444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 3e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.097445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.097445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.097445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.097445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.097445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.097445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.097445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.097445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.097445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.107427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.107427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.107427 LLDP, length 82 [|LLDP] 17:33:43.107427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.107427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.107427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cd df9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.107427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.107427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.107428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.107428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.107428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.107428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.107428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.117425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.117425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.117426 LLDP, length 82 [|LLDP] 17:33:43.117426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.117426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.117426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d5 80be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.117426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.117426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.117426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.117426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.117426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.117426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.117426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.117426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.117426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.127423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.127423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.127423 LLDP, length 82 [|LLDP] 17:33:43.127423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.127423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.127423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd 21de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.127424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.127424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.127424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.127424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.127424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.127424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.127424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.127424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.127424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.137429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 LLDP, length 82 [|LLDP] 17:33:43.137429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.137429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.137430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.137430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.137430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e4 c2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.137430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.137430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.137430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.137430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.137430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.137430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.147434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.147434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.147434 LLDP, length 82 [|LLDP] 17:33:43.147434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.147434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.147434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec 641e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.147434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.147435 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.147435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.147435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.147435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.147435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.147435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.147435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.147435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.157433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 LLDP, length 82 [|LLDP] 17:33:43.157433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.157433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.157433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 053e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.157433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.157433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.157433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.157434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.157434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.157434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.167434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 LLDP, length 82 [|LLDP] 17:33:43.167434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.167434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.167434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.167434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.167434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fb a65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.167435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.167435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.167435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.167435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.167435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.167435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.177425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.177425 LLDP, length 82 [|LLDP] 17:33:43.177425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.177425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.177425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 477e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.177425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.177425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.177425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.177425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.177425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.177426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.177426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.177426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.177426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.177426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.187425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.187425 LLDP, length 82 [|LLDP] 17:33:43.187425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.187425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.187426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060a e89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.187426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.187426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.187426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.187426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.187426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.187426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.187426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.197424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.197424 LLDP, length 82 [|LLDP] 17:33:43.197424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.197424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.197424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0612 89be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.197424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.197424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.197425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.197425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.197425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.197425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.197425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.197425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.197425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.207425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.207425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.207425 LLDP, length 82 [|LLDP] 17:33:43.207425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.207426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a 2ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.207426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.207426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.207426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.217422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.217422 LLDP, length 82 [|LLDP] 17:33:43.217422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.217422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.217422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.217422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.217422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.217423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.217423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0621 cbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.217423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.217423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.217423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.217423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.217423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.217423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.227422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.227422 LLDP, length 82 [|LLDP] 17:33:43.227422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.227422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.227422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 6d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.227423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.227423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.227423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.227423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.227423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.227423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.227423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.227423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.227423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.227423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.237420 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.237420 LLDP, length 82 [|LLDP] 17:33:43.237421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.237421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.237421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 0e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.237421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.237421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.237421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.237421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.237421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.237421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.237421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.237421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.237421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.237421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.247422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 LLDP, length 82 [|LLDP] 17:33:43.247422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.247422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.247422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.247422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.247422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0638 af5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.247423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.247423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.247423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.247423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.247423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.257424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.257424 LLDP, length 82 [|LLDP] 17:33:43.257424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.257424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.257424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 507e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.257424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.257424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.257425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.257425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.257425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.257425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.257425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.257425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.257425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.257425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.267424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.267424 LLDP, length 82 [|LLDP] 17:33:43.267424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.267424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.267424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0647 f19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.267424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.267424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.267424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.267424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.267424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.267424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.267425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.267425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.267425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.267425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.277423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 LLDP, length 82 [|LLDP] 17:33:43.277423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.277423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.277423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064f 92be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.277423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.277423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.277423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.277424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.277424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.277424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.277424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.287423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 LLDP, length 82 [|LLDP] 17:33:43.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 33de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.287423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.287424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.297425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 LLDP, length 82 [|LLDP] 17:33:43.297425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.297425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.297425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.297425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.297425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065e d4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.297425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.297426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.297426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.297426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.297426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.297426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.307425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.307425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.307425 LLDP, length 82 [|LLDP] 17:33:43.307425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.307425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.307425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 761e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.307425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.307426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.307426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.307426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.307426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.307426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.307426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.317425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 LLDP, length 82 [|LLDP] 17:33:43.317426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.317426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.317426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 173e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.317426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.317426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.317426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.317426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.317426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.317426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.317426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.317426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.327424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 LLDP, length 82 [|LLDP] 17:33:43.327424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.327424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.327424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.327424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.327424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0675 b85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.327424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.327424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.327424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.327425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.327425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.337424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.337424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.337424 LLDP, length 82 [|LLDP] 17:33:43.337424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.337425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d 597e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.337425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.337425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.337425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.337425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.337425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.337425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.337425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.347422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 LLDP, length 82 [|LLDP] 17:33:43.347422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.347422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.347422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0684 fa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.347422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.347422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.347422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.347423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.347423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.347423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.357423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 LLDP, length 82 [|LLDP] 17:33:43.357423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.357423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.357423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068c 9bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.357423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.357423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.357423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.357423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.357424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.357424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.357424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.367422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.367422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.367422 LLDP, length 82 [|LLDP] 17:33:43.367422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.367422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.367422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 3cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.367422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.367423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.367423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.367423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.367423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.367423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.367423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.377424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 LLDP, length 82 [|LLDP] 17:33:43.377424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.377424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.377424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.377424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.377424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069b ddfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.377425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.377425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.377425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.387422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 LLDP, length 82 [|LLDP] 17:33:43.387422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.387422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.387422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a3 7f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.387422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.387422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.387422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.387422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.387422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.387422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.387423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.387423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.397457 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 LLDP, length 82 [|LLDP] 17:33:43.397457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.397457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.397457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab 203e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.397457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.397457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.397457 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.397457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.397457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.397457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.397457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.397457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.407463 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 LLDP, length 82 [|LLDP] 17:33:43.407463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.407463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.407463 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.407463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.407463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b2 c15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.407463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.407463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.407463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.407463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.407463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.407464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.417430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.417430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.417430 LLDP, length 82 [|LLDP] 17:33:43.417430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.417430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.417431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba 627e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.417431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.417431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.417431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.417431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.417431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.417431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.417431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.417431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.417431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.427432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 LLDP, length 82 [|LLDP] 17:33:43.427432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.427432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.427432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 039e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.427432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.427432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.427432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.427432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.427432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.427433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.427433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.427433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 LLDP, length 82 [|LLDP] 17:33:43.437426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.437426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.437426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c9 a4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.437426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.447428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 LLDP, length 82 [|LLDP] 17:33:43.447429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.447429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.447429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 45de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.447429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.447429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.447429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.447429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.447429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.447429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.457427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.457427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.457427 LLDP, length 82 [|LLDP] 17:33:43.457427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.457428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.457428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.457428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.457428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d8 e6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.457428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.457428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.457428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.457428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.457428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.467423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.467423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.467423 LLDP, length 82 [|LLDP] 17:33:43.467424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.467424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.467424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e0 881e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.467424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.467424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.467424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.467424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.467424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.467424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.467424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.467424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.467424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.477425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.477425 LLDP, length 82 [|LLDP] 17:33:43.477425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.477425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.477425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 293e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.477425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.477425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.477425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.477425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.477426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.477426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.477426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.477426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.487424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 LLDP, length 82 [|LLDP] 17:33:43.487425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.487425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.487425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.487425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ef ca5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.487425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.487425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.487425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.487425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.487425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.497432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.497432 LLDP, length 82 [|LLDP] 17:33:43.497432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.497432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.497433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 6b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.497433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.497433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.497433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.497433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.497433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.497433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.497433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.497433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.497433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.497433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.507427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.507427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.507427 LLDP, length 82 [|LLDP] 17:33:43.507427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.507427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.507427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 0c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.507427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.507428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.507428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.507428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.507428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.507428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.507428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.507428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.507428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.517445 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 LLDP, length 82 [|LLDP] 17:33:43.517445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.517445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.517445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0706 adbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.517445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.517445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.517445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.517445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.517445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.517445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.517446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.517446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.527429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 LLDP, length 82 [|LLDP] 17:33:43.527429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.527429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.527429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e 4ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.527429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.527429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.527429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.527429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.527429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.527430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.527430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.527430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.537431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 LLDP, length 82 [|LLDP] 17:33:43.537431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.537431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.537431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.537431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.537431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0715 effe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.537431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.537431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.537431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.537432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.537432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.547423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.547423 LLDP, length 82 [|LLDP] 17:33:43.547423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.547423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.547423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071d 911e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.547423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.547424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.547424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.547424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.547424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.547424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.547424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.547424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.557426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 LLDP, length 82 [|LLDP] 17:33:43.557426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.557426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.557426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 323e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.557426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.557426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.557426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.557426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.557426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.557426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.557427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.557427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.567424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.567424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.567424 LLDP, length 82 [|LLDP] 17:33:43.567424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.567424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.567424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.567425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.567425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.567425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072c d35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.567425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.567425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.567425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.567425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.567425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.567425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.577423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 LLDP, length 82 [|LLDP] 17:33:43.577423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.577423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.577423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 747e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.577423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.577423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.577423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.577423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.577424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.577424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.587423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.587423 LLDP, length 82 [|LLDP] 17:33:43.587424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.587424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.587424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 159e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.587424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.587424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.587424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.587424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.587424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.587424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.587424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.587424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.587424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.587424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.597422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.597422 LLDP, length 82 [|LLDP] 17:33:43.597422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.597422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.597422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0743 b6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.597423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.597423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.597423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.597423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.597423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.597423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.597423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.597423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.607425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.607425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.607425 LLDP, length 82 [|LLDP] 17:33:43.607425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.607425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.607425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b 57de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.607426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.607426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.607426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.607426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.607426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.607426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.607426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.617425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 LLDP, length 82 [|LLDP] 17:33:43.617426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.617426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.617426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.617426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0752 f8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.617426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.617426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.617426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.617426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.617426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.627425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 LLDP, length 82 [|LLDP] 17:33:43.627425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.627425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.627425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075a 9a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.627425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.627425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.627425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.627425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.627426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.627426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.637424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.637424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.637424 LLDP, length 82 [|LLDP] 17:33:43.637424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.637424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.637424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 3b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.637425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.637425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.637425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.637425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.637425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.637425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.637425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.647424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 LLDP, length 82 [|LLDP] 17:33:43.647424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.647424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.647424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.647424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.647424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0769 dc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.647425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.647425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.647425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.647425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.647425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.647425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.657425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.657425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.657426 LLDP, length 82 [|LLDP] 17:33:43.657426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.657426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.657426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0771 7d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.657426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.657426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.657426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.657426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.657426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.657426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.657426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.667422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.667422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.667422 LLDP, length 82 [|LLDP] 17:33:43.667422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.667422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.667422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 1e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.667422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.667422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.667423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.667423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.667423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.667423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.667423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.667423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.667423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.677423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.677423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.677423 LLDP, length 82 [|LLDP] 17:33:43.677424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.677424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.677424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0780 bfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.677424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.677424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.677424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.677424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.677424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.677424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.677424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.677424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.677424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.687426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 LLDP, length 82 [|LLDP] 17:33:43.687426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.687426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.687426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 60de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.687426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.687426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.687426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.687426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.687426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.687427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.687427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.687427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.697422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.697422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.697422 LLDP, length 82 [|LLDP] 17:33:43.697422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.697422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.697423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.697423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.697423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 01fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.697423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.697423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.697423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.697423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.697423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.707426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 LLDP, length 82 [|LLDP] 17:33:43.707426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.707426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.707426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0797 a31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.707426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.707426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.707426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.707427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.707427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.707427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.707427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.707427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.717425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 LLDP, length 82 [|LLDP] 17:33:43.717425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.717425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.717425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f 443e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.717425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.717425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.717425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.717425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.717426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.717426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.727425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 LLDP, length 82 [|LLDP] 17:33:43.727425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.727425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.727425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.727425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.727425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a6 e55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.727425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.727425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.727425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.727426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.727426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.727426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.737429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 LLDP, length 82 [|LLDP] 17:33:43.737429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.737429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.737429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ae 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.737429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.737429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.737429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.737430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.737430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.737430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.737430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.737430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.747427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.747427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.747427 LLDP, length 82 [|LLDP] 17:33:43.747427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.747427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.747427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 279e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.747427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.747428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.747428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.747428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.747428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.747428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.747428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.757433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 LLDP, length 82 [|LLDP] 17:33:43.757433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.757433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.757433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bd c8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.757433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.757433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.757433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.757433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.757433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.757433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.757433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.757434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 LLDP, length 82 [|LLDP] 17:33:43.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 69de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.777429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 LLDP, length 82 [|LLDP] 17:33:43.777429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.777429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.777429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.777429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 0afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.777429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.777429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.777430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.777430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.777430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.777430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.787425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 LLDP, length 82 [|LLDP] 17:33:43.787426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.787426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.787426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d4 ac1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.787426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.787426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.787426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.787426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.787426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.787426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.787426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.787426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.797424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.797424 LLDP, length 82 [|LLDP] 17:33:43.797424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.797424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.797424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc 4d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.797425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.797425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.797425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.797425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.797425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.797425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.797425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.797425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.797425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.797425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.807429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 LLDP, length 82 [|LLDP] 17:33:43.807429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.807429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.807429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.807429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.807429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e3 ee5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.807429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.807429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.807429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.807429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.807430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.807430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.817425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 LLDP, length 82 [|LLDP] 17:33:43.817425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.817425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.817425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07eb 8f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.817425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.817425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.817425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.817425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.817425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.817425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.817426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.817426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.827425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.827425 LLDP, length 82 [|LLDP] 17:33:43.827425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.827425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.827425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 309e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.827425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.827425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.827425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.827425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.827425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.827425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.827426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.827426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.827426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.827426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.837424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 LLDP, length 82 [|LLDP] 17:33:43.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fa d1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.837424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.837425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.837425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.837425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.837425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.837425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.847425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.847425 LLDP, length 82 [|LLDP] 17:33:43.847425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.847425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.847425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 72de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.847426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.847426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.847426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.847426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.847426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.847426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.847426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.847426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.847426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.847426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.857431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 LLDP, length 82 [|LLDP] 17:33:43.857431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.857431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.857431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.857431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.857432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 13fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.857432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.857432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.857432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.857432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.857432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.857432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.867423 LLDP, length 82 [|LLDP] 17:33:43.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.867424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0811 b51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.867424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.877424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.877424 LLDP, length 82 [|LLDP] 17:33:43.877424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.877424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.877424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 563e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.877424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.877424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.877424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.877425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.877425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.877425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.877425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.877425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.887424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.887424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.887424 LLDP, length 82 [|LLDP] 17:33:43.887424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.887425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.887425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.887425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.887425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0820 f75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.887425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.887425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.887425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.887425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.887425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.897424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.897424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.897424 LLDP, length 82 [|LLDP] 17:33:43.897424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.897424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.897424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0828 987e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.897424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.897424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.897424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.897425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.897425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.897425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.897425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.907436 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.907436 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.907436 LLDP, length 82 [|LLDP] 17:33:43.907436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.907436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.907436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 399e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.907436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.907436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.907437 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.907437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.907437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.907437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.907437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.907437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.907437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.917425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 LLDP, length 82 [|LLDP] 17:33:43.917426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.917426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.917426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0837 dabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.917426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.917426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.917426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.917426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.917426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.917426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.927425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.927425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.927425 LLDP, length 82 [|LLDP] 17:33:43.927426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.927426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.927426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083f 7bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.927426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.927426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.927426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.927426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.927426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.927426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.927426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.937423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 LLDP, length 82 [|LLDP] 17:33:43.937423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.937423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.937423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.937423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.937423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 1cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.937423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.937423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.937424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.937424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.947423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.947423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.947423 LLDP, length 82 [|LLDP] 17:33:43.947423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.947423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.947423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084e be1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.947424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.947424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.947424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.947424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.947424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.947424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.947424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.947424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.947424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.957431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.957431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.957431 LLDP, length 82 [|LLDP] 17:33:43.957431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.957432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.957432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 5f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.957432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.957432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.957432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.957432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.957432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.957432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.957432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.957432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.957432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.967425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 LLDP, length 82 [|LLDP] 17:33:43.967425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.967425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.967425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 005e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.967426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.967426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.967426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.967426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.967426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.967426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.977423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 LLDP, length 82 [|LLDP] 17:33:43.977423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.977423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.977423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0865 a17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.977423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.977423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.977423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.977423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.977424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.977424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.987423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.987423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.987423 LLDP, length 82 [|LLDP] 17:33:43.987423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.987423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.987423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d 429e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.987423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.987424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.987424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.987424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.987424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.987424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.987424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.987424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.987424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.997423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.997423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.997423 LLDP, length 82 [|LLDP] 17:33:43.997423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.997423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.997424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0874 e3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.997424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.997424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.997424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.997424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.997424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.997424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.997424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.007423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.007423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.007423 LLDP, length 82 [|LLDP] 17:33:44.007423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.007423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.007423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087c 84de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.007423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.007424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.007424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.007424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.007424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.007424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.007424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.007424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.007424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.017433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.017433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.017434 LLDP, length 82 [|LLDP] 17:33:44.017434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.017434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.017434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.017434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.017434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.017434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 25fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.017434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.017434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.017434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.017434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.017434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.017434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.027424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 LLDP, length 82 [|LLDP] 17:33:44.027425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.027425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.027425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088b c71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.027425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.027425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.027425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.027425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.027425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.027425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.037422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.037422 LLDP, length 82 [|LLDP] 17:33:44.037422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.037422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.037422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 683e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.037422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.037422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.037422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.037422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.037422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.037423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.037423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.037423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.037423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.037423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.047422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.047422 LLDP, length 82 [|LLDP] 17:33:44.047422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.047422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.047423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.047423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.047423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.047423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.047423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 095e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.047423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.047423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.047423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.047423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.047423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.047423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.057423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.057423 LLDP, length 82 [|LLDP] 17:33:44.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a2 aa7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.057424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.057424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.057424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.057424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.067424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.067424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.067424 LLDP, length 82 [|LLDP] 17:33:44.067424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.067425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.067425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa 4b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.067425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.067425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.067425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.067425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.067425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.067425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.067425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.077424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 LLDP, length 82 [|LLDP] 17:33:44.077424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.077424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.077424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b1 ecbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.077424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.077424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.077424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.077424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.077424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.077425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.087422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.087422 LLDP, length 82 [|LLDP] 17:33:44.087422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.087422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.087422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b9 8dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.087422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.087422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.087422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.087423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.087423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.087423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.087423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.087423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.097421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.097421 LLDP, length 82 [|LLDP] 17:33:44.097421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.097421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.097421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.097421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.097422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.097422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.097422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 2efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.097422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.097422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.097422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.097422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.097422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.097422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.107423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 LLDP, length 82 [|LLDP] 17:33:44.107423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.107423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.107423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c8 d01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.107423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.107423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.107423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.107423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.107423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.107423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.107423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.107423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.117429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.117429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.117429 LLDP, length 82 [|LLDP] 17:33:44.117429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.117429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.117429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 713e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.117429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.117429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.117429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.117430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.117430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.117430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.117430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.117430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.117430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.127425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.127425 LLDP, length 82 [|LLDP] 17:33:44.127425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.127425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.127425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.127426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.127426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.127426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.127426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 125e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.127426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.127426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.127426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.127426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.127426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.127426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.137442 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.137442 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.137442 LLDP, length 82 [|LLDP] 17:33:44.137442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.137443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.137443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08df b37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.137443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.137443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.137443 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.137443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.137443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.137443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.137443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.137443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.137443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.147440 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.147440 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.147440 LLDP, length 82 [|LLDP] 17:33:44.147440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.147440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.147440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 549e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.147440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.147440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.147440 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.147441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.147441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.147441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.147441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.147441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.147441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.157437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 LLDP, length 82 [|LLDP] 17:33:44.157438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.157438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.157438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ee f5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.157438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.157438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.157438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.157438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.157438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.157438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.157438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.157438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.167437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.167437 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.167437 LLDP, length 82 [|LLDP] 17:33:44.167438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.167438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.167438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f6 96de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.167438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.167438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.167438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.167438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.167438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.167438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.167438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.167438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.167438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.177427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 LLDP, length 82 [|LLDP] 17:33:44.177427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.177427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.177427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.177427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe 37fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.177427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.177427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.177427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.177427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.177427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.187424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 LLDP, length 82 [|LLDP] 17:33:44.187424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.187424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.187424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0905 d91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.187424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.187424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.187424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.187424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.187424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.187424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.187424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.187425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.197423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.197423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.197423 LLDP, length 82 [|LLDP] 17:33:44.197423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.197423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.197424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090d 7a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.197424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.197424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.197424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.197424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.197424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.197424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.197424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.207424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 LLDP, length 82 [|LLDP] 17:33:44.207424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.207424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.207424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.207424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.207425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 1b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.207425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.207425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.207425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.207425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.207425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.207425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.217428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 LLDP, length 82 [|LLDP] 17:33:44.217428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.217428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.217428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091c bc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.217428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.217428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.217428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.217429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.217429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.217429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.217429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.217429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.227424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 LLDP, length 82 [|LLDP] 17:33:44.227424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.227424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.227424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 5d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.227424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.227424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.227424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.227424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.227424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.227424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.227424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.227425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.237423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.237423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.237423 LLDP, length 82 [|LLDP] 17:33:44.237423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.237423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.237423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092b febe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.237424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.237424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.237424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.237424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.237424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.237424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.237424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.237424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.237424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.247422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 LLDP, length 82 [|LLDP] 17:33:44.247423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.247423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.247423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0933 9fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.247423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.247423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.247423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.247423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.247423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.247423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.257422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 LLDP, length 82 [|LLDP] 17:33:44.257422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.257422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.257422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.257422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.257423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b 40fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.257423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.257423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.257423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.257423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.257423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.257423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.267434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 LLDP, length 82 [|LLDP] 17:33:44.267434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.267434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.267434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0942 e21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.267434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.267434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.267434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.267434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.267434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.267434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.267435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.267435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 LLDP, length 82 [|LLDP] 17:33:44.277424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.277424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.277424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094a 833e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.277424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.277424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.277424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.277424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.277424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.287423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 LLDP, length 82 [|LLDP] 17:33:44.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 245e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.287424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.287424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.287424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.297422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 LLDP, length 82 [|LLDP] 17:33:44.297423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.297423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.297423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0959 c57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.297423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.297423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.297423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.297423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.297423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.297423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.297423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.297423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.307422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.307422 LLDP, length 82 [|LLDP] 17:33:44.307422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.307422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.307422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 669e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.307423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.307423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.307423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.307423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.307423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.307423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.307423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.307423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.315648 LLDP, length 219: localhost 17:33:44.317422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.317422 LLDP, length 82 [|LLDP] 17:33:44.317422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.317422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.317422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 07be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.317422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.317423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.317423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.317423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.317423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.317423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.327424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.327424 LLDP, length 82 [|LLDP] 17:33:44.327425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.327425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.327425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0970 a8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.327425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.327425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.327425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.327425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.327425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.327425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.327425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.327425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.337425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.337425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.337426 LLDP, length 82 [|LLDP] 17:33:44.337426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.337426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.337426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.337426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.337426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 49fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.337426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.337426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.337426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.337426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.337426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.347423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 LLDP, length 82 [|LLDP] 17:33:44.347423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.347423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.347423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097f eb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.347423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.347423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.347423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.347424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.347424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.347424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.347424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.357423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 LLDP, length 82 [|LLDP] 17:33:44.357424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.357424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.357424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0987 8c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.357424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.357424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.357424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.357424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.357424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.357424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.367427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 LLDP, length 82 [|LLDP] 17:33:44.367427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.367427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.367427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.367427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.367427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f 2d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.367427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.367428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.367428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.367428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.367428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.367428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.377443 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.377443 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.377443 LLDP, length 82 [|LLDP] 17:33:44.377443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.377443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.377443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0996 ce7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.377444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.377444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.377444 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.377444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.377444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.377444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.377444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.377444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.377444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.387428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.387428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.387428 LLDP, length 82 [|LLDP] 17:33:44.387428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.387428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.387428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e 6f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.387429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.387429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.387429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.387429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.387429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.387429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.387429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.387429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.387429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.397431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 LLDP, length 82 [|LLDP] 17:33:44.397431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.397431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.397431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 10be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.397431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.397431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.397431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.397431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.397431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.397431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.397432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.397432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.407426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.407426 LLDP, length 82 [|LLDP] 17:33:44.407426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.407426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.407426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ad b1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.407426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.407426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.407427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.407427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.407427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.407427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.407427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.407427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.407427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.407427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.417426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 LLDP, length 82 [|LLDP] 17:33:44.417426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.417426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.417426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.417426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.417426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 52fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.417426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.417426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.417427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.417427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.417427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.417427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.427426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 LLDP, length 82 [|LLDP] 17:33:44.427426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.427426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.427426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bc f41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.427426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.427426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.427426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.427426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.427427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.427427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.437425 LLDP, length 82 [|LLDP] 17:33:44.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.437426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c4 953e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.437426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.447426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.447426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.447426 LLDP, length 82 [|LLDP] 17:33:44.447426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.447426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.447427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.447427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.447427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc 365e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.447427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.447427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.447427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.447427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.447427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.457424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.457424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.457424 LLDP, length 82 [|LLDP] 17:33:44.457424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.457425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.457425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d3 d77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.457425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.457425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.457425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.457425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.457425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.457425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.457425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.457425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.457425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.467427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 LLDP, length 82 [|LLDP] 17:33:44.467428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.467428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.467428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db 789e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.467428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.467428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.467428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.467428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.467428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.467428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.467428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.467428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.477425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 LLDP, length 82 [|LLDP] 17:33:44.477425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.477425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.477425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 19be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.477425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.477425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.477425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.477425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.477425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.477426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.477426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.487425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.487425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.487425 LLDP, length 82 [|LLDP] 17:33:44.487425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.487426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.487426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ea bade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.487426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.487426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.487426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.487426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.487426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.487426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.487426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.487426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.487426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.497419 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 LLDP, length 82 [|LLDP] 17:33:44.497419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.497419 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.497419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.497419 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.497419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 5bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.497420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.497420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.497420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.497420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.497420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.497420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.507424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.507424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.507424 LLDP, length 82 [|LLDP] 17:33:44.507425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.507425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.507425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f9 fd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.507425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.507425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.507425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.507425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.507425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.507425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.507425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.507425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.507425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.517425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.517425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.517425 LLDP, length 82 [|LLDP] 17:33:44.517426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.517426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.517426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a01 9e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.517426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.517426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.517426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.517426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.517426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.517426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.517426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.517426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.517426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.527425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 LLDP, length 82 [|LLDP] 17:33:44.527425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.527425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.527425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.527425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.527425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 3f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.527425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.527425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.527425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.527426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.527426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.527426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.537431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.537431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.537431 LLDP, length 82 [|LLDP] 17:33:44.537431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.537431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.537431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a10 e07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.537432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.537432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.537432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.537432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.537432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.537432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.537432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.547428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.547428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.547428 LLDP, length 82 [|LLDP] 17:33:44.547428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.547428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.547428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a18 819e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.547428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.547428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.547429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.547429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.547429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.547429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.547429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.547429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.547429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.557424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.557424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.557424 LLDP, length 82 [|LLDP] 17:33:44.557424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.557425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.557425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 22be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.557425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.557425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.557425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.557425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.557425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.557425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.557425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.557425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.557425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.567429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.567429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.567429 LLDP, length 82 [|LLDP] 17:33:44.567430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.567430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.567430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a27 c3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.567430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.567430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.567430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.567430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.567430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.567430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.567430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.567430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.567430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.577425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 LLDP, length 82 [|LLDP] 17:33:44.577425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.577425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.577425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.577425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.577425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f 64fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.577425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.577426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.577426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.577426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.577426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.577426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.587424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.587424 LLDP, length 82 [|LLDP] 17:33:44.587424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.587424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.587424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 061e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.587425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.587425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.587425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.587425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.587425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.587425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.587425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.587425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.587425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.587425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.597424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.597424 LLDP, length 82 [|LLDP] 17:33:44.597425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.597425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.597425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3e a73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.597425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.597425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.597425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.597425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.597425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.597425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.597425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.597425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.597425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.597425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.607424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 LLDP, length 82 [|LLDP] 17:33:44.607424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.607424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.607424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.607424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 485e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.607424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.607424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.607424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.607424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.607425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.617426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 LLDP, length 82 [|LLDP] 17:33:44.617426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.617426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.617426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4d e97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.617426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.617426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.617426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.617426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.617427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.617427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.617427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.627424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 LLDP, length 82 [|LLDP] 17:33:44.627424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.627424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a55 8a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.627424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.627424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.627424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.627424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.627425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.627425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.637424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.637424 LLDP, length 82 [|LLDP] 17:33:44.637424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.637424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.637424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d 2bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.637424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.637425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.637425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.637425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.637425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.637425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.637425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.637425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.647430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.647430 LLDP, length 82 [|LLDP] 17:33:44.647430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.647430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.647430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a64 ccde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.647430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.647430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.647430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.647431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.647431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.647431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.647431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.647431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.647431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.647431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.657422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 LLDP, length 82 [|LLDP] 17:33:44.657422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.657422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.657422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.657422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.657422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c 6dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.657423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.657423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.657423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.657423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.657423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.657423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.667425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 LLDP, length 82 [|LLDP] 17:33:44.667425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.667425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.667425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 0f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.667425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.667425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.667425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.667425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.667425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.667425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.677427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 LLDP, length 82 [|LLDP] 17:33:44.677427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.677427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.677427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7b b03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.677427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.677427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.677427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.677427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.677427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.677427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.677427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.677428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.687424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.687424 LLDP, length 82 [|LLDP] 17:33:44.687424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.687424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.687424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.687425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.687425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.687425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 515e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.687425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.687425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.687425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.687425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.687425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.697423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.697423 LLDP, length 82 [|LLDP] 17:33:44.697423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.697423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.697423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8a f27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.697423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.697423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.697423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.697423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.697423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.697424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.697424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.697424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.697424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.707423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.707423 LLDP, length 82 [|LLDP] 17:33:44.707423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.707423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.707423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a92 939e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.707424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.707424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.707424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.707424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.707424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.707424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.707424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.707424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.717423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 LLDP, length 82 [|LLDP] 17:33:44.717423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.717423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.717423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a 34be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.717423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.717423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.717423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.717424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.717424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.717424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.717424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.717424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.727427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.727427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.727427 LLDP, length 82 [|LLDP] 17:33:44.727427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.727427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.727427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa1 d5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.727428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.727428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.727428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.727428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.727428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.727428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.727428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.727428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.727428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.737423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 LLDP, length 82 [|LLDP] 17:33:44.737423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.737423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.737423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.737423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.737424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 76fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.737424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.737424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.737424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.737424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.737424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.737424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.747422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 LLDP, length 82 [|LLDP] 17:33:44.747422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.747422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.747422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 181e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.747422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.747422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.747422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.747422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.747422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.747422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.747422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.747423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.757423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.757423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.757423 LLDP, length 82 [|LLDP] 17:33:44.757423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.757423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.757423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab8 b93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.757423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.757424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.757424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.757424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.757424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.757424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.757424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.767424 LLDP, length 82 [|LLDP] 17:33:44.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.767425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.767425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.767425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.767425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.767425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 5a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.767425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.767425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.767425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.767425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.767425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.777425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.777425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.777425 LLDP, length 82 [|LLDP] 17:33:44.777425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.777425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.777425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac7 fb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.777426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.777426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.777426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.777426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.777426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.777426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.777426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.787421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 LLDP, length 82 [|LLDP] 17:33:44.787422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.787422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.787422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acf 9c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.787422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.787422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.787422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.787422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.787422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.787422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.787422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.787422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.797423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 LLDP, length 82 [|LLDP] 17:33:44.797423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.797423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.797423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 3dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.797423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.797423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.797423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.797424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.797424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.797424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.797424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.797424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.807425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.807425 LLDP, length 82 [|LLDP] 17:33:44.807426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.807426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.807426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ade dede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.807426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.807426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.807426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.807426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.807426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.807426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.807426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.817423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 LLDP, length 82 [|LLDP] 17:33:44.817423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.817423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.817423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.817424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae6 7ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.817424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.817424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.817424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.817424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.817424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.817424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.827426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.827426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.827426 LLDP, length 82 [|LLDP] 17:33:44.827426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.827426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.827426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee 211e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.827426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.827426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.827427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.827427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.827427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.827427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.827427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.837423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 LLDP, length 82 [|LLDP] 17:33:44.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af5 c23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.837424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.837424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.837424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.837424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.847422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.847422 LLDP, length 82 [|LLDP] 17:33:44.847422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.847422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.847423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.847423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.847423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.847423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.847423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd 635e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.847423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.847423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.847423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.847423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.847423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.847423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.857422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 LLDP, length 82 [|LLDP] 17:33:44.857422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.857422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.857422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 047e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.857422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.857422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.857422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.857422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.857423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.857423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.857423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.867421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 LLDP, length 82 [|LLDP] 17:33:44.867421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.867421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.867421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0c a59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.867421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.867421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.867421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.867421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.867422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.867422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.877425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 LLDP, length 82 [|LLDP] 17:33:44.877426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.877426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.877426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 46be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.877426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.877426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.877426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.877426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.877426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.877426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.887427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 LLDP, length 82 [|LLDP] 17:33:44.887427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.887427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.887427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1b e7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.887427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.887427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.887427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.887428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.887428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.887428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.887428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.887428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.897424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 LLDP, length 82 [|LLDP] 17:33:44.897424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.897424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.897424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.897424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.897424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b23 88fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.897424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.897424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.897425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.897425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.897425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.907423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.907423 LLDP, length 82 [|LLDP] 17:33:44.907423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.907423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.907423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b 2a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.907423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.907423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.907423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.907423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.907423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.907424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.907424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.907424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.907424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.907424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.917423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.917423 LLDP, length 82 [|LLDP] 17:33:44.917423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.917424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.917424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b32 cb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.917424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.917424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.917424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.917424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.917424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.917424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.917424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.917424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.917424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.917424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.927429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 LLDP, length 82 [|LLDP] 17:33:44.927429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.927429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.927429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.927429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.927429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a 6c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.927429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.927429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.927429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.927429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.927430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.927430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.937424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.937424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.937425 LLDP, length 82 [|LLDP] 17:33:44.937425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.937425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.937425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 0d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.937425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.937425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.937425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.937425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.937425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.937425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.937425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.937425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.937425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.947424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.947424 LLDP, length 82 [|LLDP] 17:33:44.947424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.947424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.947424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b49 ae9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.947425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.947425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.947425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.947425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.947425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.947425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.947425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.947425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.947425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.947425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.957423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.957423 LLDP, length 82 [|LLDP] 17:33:44.957423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.957423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.957423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 4fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.957423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.957424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.957424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.957424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.957424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.957424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.967424 LLDP, length 82 [|LLDP] 17:33:44.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.967424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.967424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b58 f0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.967424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.967424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.967425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.977426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.977426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.977427 LLDP, length 82 [|LLDP] 17:33:44.977427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.977427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.977427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.977427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.977427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.977427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b60 91fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.977427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.977427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.977427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.977427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.977427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.977427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.987423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 LLDP, length 82 [|LLDP] 17:33:44.987423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.987423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.987423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 331e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.987423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.987423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.987423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.987423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.987423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.987423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.987423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.987424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.997423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.997423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.997424 LLDP, length 82 [|LLDP] 17:33:44.997424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.997424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.997424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6f d43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.997424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.997424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.997424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.997424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.997424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.997424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.997424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.007426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.007426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.007426 LLDP, length 82 [|LLDP] 17:33:45.007426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.007426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.007426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.007427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.007427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.007427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 755e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.007427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.007427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.007427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.007427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.007427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.007427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.017426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 LLDP, length 82 [|LLDP] 17:33:45.017426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.017426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.017426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 167e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.017426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.017426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.017426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.017426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.017427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.017427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.027426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.027426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.027426 LLDP, length 82 [|LLDP] 17:33:45.027426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.027426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.027426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b86 b79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.027426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.027426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.027427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.027427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.027427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.027427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.027427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.037425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 LLDP, length 82 [|LLDP] 17:33:45.037425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.037425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.037425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e 58be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.037425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.037426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.037426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.037426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.037426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.037426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.037426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.037426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.047425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.047425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.047425 LLDP, length 82 [|LLDP] 17:33:45.047425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.047425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.047425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b95 f9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.047425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.047425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.047426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.047426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.047426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.047426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.047426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.047426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.047426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.057423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 LLDP, length 82 [|LLDP] 17:33:45.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9d 9afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.057423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.057424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.057424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.067424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 LLDP, length 82 [|LLDP] 17:33:45.067424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.067424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.067424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 3c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.067424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.067424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.067424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.067424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.067425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.067425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.067425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.077426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 LLDP, length 82 [|LLDP] 17:33:45.077426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.077426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.077426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bac dd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.077426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.077426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.077426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.077426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.077427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.077427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.087425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 LLDP, length 82 [|LLDP] 17:33:45.087425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.087425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.087425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.087425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.087426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb4 7e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.087426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.087426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.087426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.087426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.087426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.087426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.097431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 LLDP, length 82 [|LLDP] 17:33:45.097432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.097432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.097432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc 1f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.097432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.097432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.097432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.097432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.097432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.097432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.097432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.097432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.107427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 LLDP, length 82 [|LLDP] 17:33:45.107428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.107428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.107428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc3 c09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.107428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.107428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.107428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.107428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.107428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.107428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.117427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 LLDP, length 82 [|LLDP] 17:33:45.117427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.117427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.117427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb 61be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.117427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.117427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.117427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.117427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.117427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.117428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.117428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.117428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.127427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.127427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.127428 LLDP, length 82 [|LLDP] 17:33:45.127428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.127428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.127428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 02de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.127428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.127428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.127428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.127428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.127428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.127428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.127428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.137441 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 LLDP, length 82 [|LLDP] 17:33:45.137441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.137441 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.137441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.137441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.137441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bda a3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.137441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.137442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.137442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.137442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.137442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.137442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.147424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.147424 LLDP, length 82 [|LLDP] 17:33:45.147424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.147424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.147424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 451e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.147424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.147424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.147424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.147424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.147424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.147425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.147425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.147425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.147425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.147425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.157433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.157433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.157433 LLDP, length 82 [|LLDP] 17:33:45.157433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.157433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.157434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be9 e63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.157434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.157434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.157434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.157434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.157434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.157434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.157434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.167427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 LLDP, length 82 [|LLDP] 17:33:45.167427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.167427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.167427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.167427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.167427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf1 875e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.167427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.167427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.167427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.167427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.167427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.167428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.177427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 LLDP, length 82 [|LLDP] 17:33:45.177427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.177427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.177427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 287e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.177427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.177427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.177427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.177427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.177428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.177428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.177428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.187429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.187429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.187429 LLDP, length 82 [|LLDP] 17:33:45.187429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.187429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.187429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c00 c99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.187429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.187429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.187429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.187430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.187430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.187430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.187430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.187430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.187430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.197426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 LLDP, length 82 [|LLDP] 17:33:45.197426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.197426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.197426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 6abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.197426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.197427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.197427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.197427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.197427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.197427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.197427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.197427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.207425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.207425 LLDP, length 82 [|LLDP] 17:33:45.207425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.207425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 0bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.207426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.207426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.207426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.207426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.217424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 LLDP, length 82 [|LLDP] 17:33:45.217424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.217424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.217424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.217425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c17 acfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.217425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.217425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.217425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.217425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.217425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.217425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.227428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 LLDP, length 82 [|LLDP] 17:33:45.227428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.227428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.227428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f 4e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.227428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.227428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.227428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.227428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.227428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.227429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.227429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.227429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.237444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 LLDP, length 82 [|LLDP] 17:33:45.237444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.237444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.237444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c26 ef3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.237444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.237444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.237444 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.237445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.237445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.237445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.237445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.237445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.247429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.247429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.247429 LLDP, length 82 [|LLDP] 17:33:45.247429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.247429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.247430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.247430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.247430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2e 905e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.247430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.247430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.247430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.247430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.247430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.257430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 LLDP, length 82 [|LLDP] 17:33:45.257430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.257430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.257430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 317e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.257430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.257430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.257430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.257430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.257430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.257430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.257431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.257431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.267431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.267431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.267431 LLDP, length 82 [|LLDP] 17:33:45.267432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.267432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.267432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3d d29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.267432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.267432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.267432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.267432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.267432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.267432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.267432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.267432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.267432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.277430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.277430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.277430 LLDP, length 82 [|LLDP] 17:33:45.277430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.277430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.277430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 73be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.277431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.277431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.277431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.277431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.277431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.277431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.277431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.277431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.277431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.287425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.287425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.287425 LLDP, length 82 [|LLDP] 17:33:45.287425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.287425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.287425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 14de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.287426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.287426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.287426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.287426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.287426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.287426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.287426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.287426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.287426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.297424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 LLDP, length 82 [|LLDP] 17:33:45.297424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.297424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.297424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.297424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.297424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c54 b5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.297425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.297425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.297425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.297425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.297425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.297425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.307424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 LLDP, length 82 [|LLDP] 17:33:45.307424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.307424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.307424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c 571e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.307424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.307424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.307424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.307424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.307425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.307425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.307425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.307425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.317423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 LLDP, length 82 [|LLDP] 17:33:45.317423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.317423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.317423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c63 f83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.317423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.317424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.317424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.317424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.317424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.317424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.327435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 LLDP, length 82 [|LLDP] 17:33:45.327435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.327435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.327435 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.327435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.327435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6b 995e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.327435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.327435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.327435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.327435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.327436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.327436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.337424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 LLDP, length 82 [|LLDP] 17:33:45.337424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.337424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.337424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 3a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.337424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.337424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.337424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.337424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.337424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.337424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.337424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.337424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.347422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.347422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.347423 LLDP, length 82 [|LLDP] 17:33:45.347423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.347423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.347423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7a db9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.347423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.347423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.347423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.347423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.347423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.347423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.347423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.357421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.357421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.357421 LLDP, length 82 [|LLDP] 17:33:45.357422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.357422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.357422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c82 7cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.357422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.357422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.357422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.357422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.357422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.357422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.357422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.357422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.357422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.367423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.367423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.367424 LLDP, length 82 [|LLDP] 17:33:45.367424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.367424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.367424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a 1dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.367424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.367424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.367424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.367424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.367424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.367424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.367424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.377432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.377432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.377433 LLDP, length 82 [|LLDP] 17:33:45.377433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.377433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.377433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.377433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.377433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.377433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c91 befe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.377433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.377433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.377433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.377433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.377433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.377433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.387427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.387427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.387427 LLDP, length 82 [|LLDP] 17:33:45.387427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.387427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.387427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 601e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.387427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.387427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.387428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.387428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.387428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.387428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.387428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.387428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.387428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.397428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.397428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.397428 LLDP, length 82 [|LLDP] 17:33:45.397428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.397428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.397428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 013e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.397429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.397429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.397429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.397429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.397429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.397429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.397429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.407425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.407425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.407425 LLDP, length 82 [|LLDP] 17:33:45.407425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.407425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.407425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.407426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.407426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca8 a25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.407426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.407426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.407426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.407426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.407426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.417421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.417421 LLDP, length 82 [|LLDP] 17:33:45.417421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.417421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.417422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 437e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.417422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.417422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.417422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.417422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.417422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.417422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.417422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.417422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.417422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.417422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.427427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.427427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.427427 LLDP, length 82 [|LLDP] 17:33:45.427427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.427427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.427428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb7 e49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.427428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.427428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.427428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.427428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.427428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.427428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.427428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.427428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.427428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 LLDP, length 82 [|LLDP] 17:33:45.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.437425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbf 85be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.437425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.437425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.447426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 LLDP, length 82 [|LLDP] 17:33:45.447427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.447427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.447427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 26de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.447427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.447427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.447427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.447427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.447427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.447427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.457427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 LLDP, length 82 [|LLDP] 17:33:45.457427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.457427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.457427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.457427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.457427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cce c7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.457428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.457428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.457428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.457428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.457428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.467421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.467421 LLDP, length 82 [|LLDP] 17:33:45.467421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.467421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.467421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 691e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.467421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.467421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.467421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.467422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.467422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.467422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.467422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.467422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.467422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.467422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.477422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.477422 LLDP, length 82 [|LLDP] 17:33:45.477422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.477422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.477422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 0a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.477422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.477422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.477422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.477422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.477422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.477422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.477423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.477423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.477423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.477423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.487427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 LLDP, length 82 [|LLDP] 17:33:45.487427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.487427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.487427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.487427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.487427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce5 ab5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.487427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.487427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.487428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.487428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.487428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.487428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.497424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.497424 LLDP, length 82 [|LLDP] 17:33:45.497424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.497424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.497424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced 4c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.497425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.497425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.497425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.497425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.497425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.497425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.497425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.497425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.497425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.497425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.507426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 LLDP, length 82 [|LLDP] 17:33:45.507426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.507426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.507426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf4 ed9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.507426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.507426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.507426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.507426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.507426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.507426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.507427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.507427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.517424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.517424 LLDP, length 82 [|LLDP] 17:33:45.517424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.517424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.517424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfc 8ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.517424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.517424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.517425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.517425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.517425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.517425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.517425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.517425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.517425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.517425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.527426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 LLDP, length 82 [|LLDP] 17:33:45.527426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.527426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.527426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 2fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.527426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.527426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.527426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.527426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.527427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.527427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.527427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.527427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.537429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 LLDP, length 82 [|LLDP] 17:33:45.537429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.537429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.537429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.537429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.537429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0b d0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.537430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.537430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.537430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.537430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.537430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.537430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.547423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.547423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.547423 LLDP, length 82 [|LLDP] 17:33:45.547423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.547424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.547424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 721e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.547424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.547424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.547424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.547424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.547424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.547424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.547424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.557435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.557435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.557435 LLDP, length 82 [|LLDP] 17:33:45.557435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.557435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.557435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.557435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.557435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.557436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.557436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.557436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.557436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.557436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.557436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.557436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.567423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 LLDP, length 82 [|LLDP] 17:33:45.567423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.567423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.567423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.567423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.567423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d22 b45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.567423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.567424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.567424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.567424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.567424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.577421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.577421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.577421 LLDP, length 82 [|LLDP] 17:33:45.577421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.577421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.577421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a 557e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.577422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.577422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.577422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.577422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.577422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.577422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.577422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.587426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 LLDP, length 82 [|LLDP] 17:33:45.587426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.587426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.587426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d31 f69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.587426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.587426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.587426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.587426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.587426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.587427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.597423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 LLDP, length 82 [|LLDP] 17:33:45.597423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.597423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.597423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d39 97be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.597423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.597424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.597424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.597424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.597424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.597424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.597424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.607425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 LLDP, length 82 [|LLDP] 17:33:45.607425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.607425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.607425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 38de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.607425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.607425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.607425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.607426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.607426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.607426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.617424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.617424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.617425 LLDP, length 82 [|LLDP] 17:33:45.617425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.617425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.617425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.617425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.617425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.617425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d48 d9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.617425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.617425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.617425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.617425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.617425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.617425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.627424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 LLDP, length 82 [|LLDP] 17:33:45.627424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.627424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d50 7b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.627424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.627424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.627424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.627424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.627425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.627425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.637427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.637427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.637428 LLDP, length 82 [|LLDP] 17:33:45.637428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.637428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.637428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 1c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.637428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.637428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.637428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.637428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.637428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.637428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.637428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.637428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.637428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.647465 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.647465 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.647465 LLDP, length 82 [|LLDP] 17:33:45.647466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.647466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.647466 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.647466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.647466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.647466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5f bd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.647466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.647466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.647466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.647466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.647466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.647466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.657455 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.657455 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.657455 LLDP, length 82 [|LLDP] 17:33:45.657455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.657455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.657455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.657456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.657456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.657456 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.657456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.657456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.657456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.657456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.657456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.657456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.667435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.667435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.667435 LLDP, length 82 [|LLDP] 17:33:45.667435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.667435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.667435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6e ff9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.667436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.667436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.667436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.667436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.667436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.667436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.667436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.667436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.667436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.677430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 LLDP, length 82 [|LLDP] 17:33:45.677430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.677430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.677430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d76 a0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.677430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.677430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.677430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.677430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.677431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.677431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.677431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.677431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.687436 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 LLDP, length 82 [|LLDP] 17:33:45.687436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.687436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.687436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e 41de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.687436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.687436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.687436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.687436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.687436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.687436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.687436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.687437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.697429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 LLDP, length 82 [|LLDP] 17:33:45.697430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.697430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.697430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.697430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.697430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d85 e2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.697430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.697430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.697430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.697430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.697430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.697430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.707427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.707427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.707428 LLDP, length 82 [|LLDP] 17:33:45.707428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.707428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.707428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8d 841e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.707428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.707428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.707428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.707428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.707428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.707428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.707428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.707428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.707428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.717428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.717428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.717428 LLDP, length 82 [|LLDP] 17:33:45.717429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.717429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.717429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 253e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.717429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.717429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.717429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.717429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.717429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.717429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.717429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.717429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.717429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.727425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 LLDP, length 82 [|LLDP] 17:33:45.727425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.727425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.727425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.727425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.727425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9c c65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.727425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.727425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.727425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.727426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.727426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.727426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.737428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 LLDP, length 82 [|LLDP] 17:33:45.737429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.737429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.737429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 677e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.737429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.737429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.737429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.737429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.737429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.737429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.737429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.737429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.747425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.747425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.747426 LLDP, length 82 [|LLDP] 17:33:45.747426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.747426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.747426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 089e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.747426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.747426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.747426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.747426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.747426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.747426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.747426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.747426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.747426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.757426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 LLDP, length 82 [|LLDP] 17:33:45.757426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.757426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.757426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db3 a9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.757426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.757426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.757426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.757426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.757426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.757426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.757427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.757427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.767423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.767423 LLDP, length 82 [|LLDP] 17:33:45.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb 4ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.767424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.777428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 LLDP, length 82 [|LLDP] 17:33:45.777428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.777428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.777429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.777429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc2 ebfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.777429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.777429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.777429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.777429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.777429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.787430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 LLDP, length 82 [|LLDP] 17:33:45.787430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.787430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.787430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dca 8d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.787430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.787430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.787430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.787430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.787430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.787430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.787431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.787431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.797426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 LLDP, length 82 [|LLDP] 17:33:45.797426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.797426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.797426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 2e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.797426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.797426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.797426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.797426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.797427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.797427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.807424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.807424 LLDP, length 82 [|LLDP] 17:33:45.807424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.807425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.807425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.807425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.807425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.807425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd9 cf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.807425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.807425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.807425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.807425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.807425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.807425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.817426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.817426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.817427 LLDP, length 82 [|LLDP] 17:33:45.817427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.817427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.817427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 707e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.817427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.817427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.817427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.817427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.817427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.817427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.817427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.817427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.817427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.827426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.827426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.827426 LLDP, length 82 [|LLDP] 17:33:45.827426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.827426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.827426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 119e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.827426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.827427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.827427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.827427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.827427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.827427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.827427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.837427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 LLDP, length 82 [|LLDP] 17:33:45.837427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.837427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.837427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df0 b2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.837427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.837427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.837428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.837428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.837428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.837428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.837428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.837428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.847427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 LLDP, length 82 [|LLDP] 17:33:45.847427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.847427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.847427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 53de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.847427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.847427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.847427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.847427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.847427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.847428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.847428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.847428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.857424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 LLDP, length 82 [|LLDP] 17:33:45.857424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.857424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.857424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.857424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.857424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dff f4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.857424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.857424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.857424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.857424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.857425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.857425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.867423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.867423 LLDP, length 82 [|LLDP] 17:33:45.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.867424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e07 961e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.877425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 LLDP, length 82 [|LLDP] 17:33:45.877425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.877425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.877425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f 373e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.877425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.877425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.877425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.877425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.877426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.877426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.887440 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 LLDP, length 82 [|LLDP] 17:33:45.887440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.887440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.887440 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.887440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.887441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e16 d85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.887441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.887441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.887441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.887441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.887441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.887441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.897423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 LLDP, length 82 [|LLDP] 17:33:45.897423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.897423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.897423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1e 797e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.897423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.897423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.897423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.897423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.897423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.897424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.897424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.897424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.907426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.907426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.907426 LLDP, length 82 [|LLDP] 17:33:45.907427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.907427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.907427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 1a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.907427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.907427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.907427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.907427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.907427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.907427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.907427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.907427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.907427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.917425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 LLDP, length 82 [|LLDP] 17:33:45.917425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.917425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.917425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2d bbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.917425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.917425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.917426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.917426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.917426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.917426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.917426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.927433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.927433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.927433 LLDP, length 82 [|LLDP] 17:33:45.927434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.927434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.927434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 5cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.927434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.927434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.927434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.927434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.927434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.927434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.927434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.937443 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 LLDP, length 82 [|LLDP] 17:33:45.937443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.937443 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.937443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.937443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.937443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3c fdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.937443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.937444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.937444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.937444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.937444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.937444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.947426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.947426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.947426 LLDP, length 82 [|LLDP] 17:33:45.947426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.947427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.947427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e44 9f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.947427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.947427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.947427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.947427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.947427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.947427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.947427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.957424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.957424 LLDP, length 82 [|LLDP] 17:33:45.957424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.957424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.957424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c 403e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.957425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.957425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.957425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.957425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.957425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.957425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 LLDP, length 82 [|LLDP] 17:33:45.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.967424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.967424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.967424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.967424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e53 e15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.967424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.967424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.967424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.967424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.977424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.977424 LLDP, length 82 [|LLDP] 17:33:45.977424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.977424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.977424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5b 827e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.977424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.977424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.977424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.977424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.977424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.977425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.977425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.977425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.977425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.977425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.987427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.987427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.987427 LLDP, length 82 [|LLDP] 17:33:45.987427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.987427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.987427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 239e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.987427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.987427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.987428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.987428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.987428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.987428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.987428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.987428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.987428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.997425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.997425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.997425 LLDP, length 82 [|LLDP] 17:33:45.997426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.997426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.997426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6a c4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.997426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.997426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.997426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.997426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.997426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.997426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.997426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.997426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.997426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.007425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.007425 LLDP, length 82 [|LLDP] 17:33:46.007425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.007425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.007425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 65de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.007425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.007425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.007425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.007425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.007425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.007426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.007426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.007426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.007426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.007426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.017423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.017423 LLDP, length 82 [|LLDP] 17:33:46.017423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.017423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.017423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.017423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.017423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.017424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.017424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 06fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.017424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.017424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.017424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.017424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.017424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.017424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.027426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.027426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.027426 LLDP, length 82 [|LLDP] 17:33:46.027426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.027426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.027427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e81 a81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.027427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.027427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.027427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.027427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.027427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.027427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.027427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.037430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 LLDP, length 82 [|LLDP] 17:33:46.037430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.037430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.037430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 493e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.037430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.037430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.037430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.037430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.037430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.037431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.037431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.037431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.047425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 LLDP, length 82 [|LLDP] 17:33:46.047425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.047425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.047425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.047425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.047425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e90 ea5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.047425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.047425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.047425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.047425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.047426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.047426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.057425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 LLDP, length 82 [|LLDP] 17:33:46.057425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.057425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.057425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e98 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.057425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.057425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.057425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.057425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.057425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.057426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.057426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.057426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.067423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.067423 LLDP, length 82 [|LLDP] 17:33:46.067423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.067423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.067423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 2c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.067423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.067423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.067423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.067423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.067423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.067423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.067424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.067424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.067424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.067424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.077425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 LLDP, length 82 [|LLDP] 17:33:46.077425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.077425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.077425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea7 cdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.077425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.077425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.077425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.077425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.077426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.077426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.077426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.087430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 LLDP, length 82 [|LLDP] 17:33:46.087430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.087430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.087430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf 6ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.087430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.087430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.087430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.087430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.087430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.087430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.087430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.087431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.097448 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.097448 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.097448 LLDP, length 82 [|LLDP] 17:33:46.097448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.097448 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.097449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.097449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.097449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.097449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 0ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.097449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.097449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.097449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.097449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.097449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.097449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.107432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.107432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.107432 LLDP, length 82 [|LLDP] 17:33:46.107432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.107432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.107432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebe b11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.107432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.107432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.107433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.107433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.107433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.107433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.107433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.107433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.107433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.117431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.117431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.117431 LLDP, length 82 [|LLDP] 17:33:46.117431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.117431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.117432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 523e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.117432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.117432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.117432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.117432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.117432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.117432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.117432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.117432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.117432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.127427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.127427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.127427 LLDP, length 82 [|LLDP] 17:33:46.127427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.127428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.127428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.127428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.127428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecd f35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.127428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.127428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.127428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.127428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.127428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.137428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.137428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.137429 LLDP, length 82 [|LLDP] 17:33:46.137429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.137429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.137429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed5 947e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.137429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.137429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.137429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.137429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.137429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.137429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.137429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.137429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.137429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.147430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 LLDP, length 82 [|LLDP] 17:33:46.147431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.147431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.147431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd 359e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.147431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.147431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.147431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.147431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.147431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.147431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.147431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.147431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.157424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 LLDP, length 82 [|LLDP] 17:33:46.157424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.157424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.157424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee4 d6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.157424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.157424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.157424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.157424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.157424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.157425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.157425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.157425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.167427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.167427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.167427 LLDP, length 82 [|LLDP] 17:33:46.167427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.167427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.167427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.167427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.167427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.167427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.167428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.167428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.167428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.167428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.167428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.167428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.177424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 LLDP, length 82 [|LLDP] 17:33:46.177424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.177424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.177424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.177424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.177424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 18fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.177425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.177425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.177425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.177425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.177425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.177425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.187425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 LLDP, length 82 [|LLDP] 17:33:46.187425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.187425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.187425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efb ba1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.187425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.187425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.187425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.187425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.187426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.187426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.197439 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 LLDP, length 82 [|LLDP] 17:33:46.197439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.197439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.197439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 5b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.197439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.197439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.197439 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.197439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.197439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.197439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.197440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.197440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.207426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 LLDP, length 82 [|LLDP] 17:33:46.207426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.207426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0a fc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.207427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.207427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.207427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.207427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.217423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 LLDP, length 82 [|LLDP] 17:33:46.217424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.217424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.217424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f12 9d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.217424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.217424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.217424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.217424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.217424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.217424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.227425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 LLDP, length 82 [|LLDP] 17:33:46.227425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.227425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.227425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a 3e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.227425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.227425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.227425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.227426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.227426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.227426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.227426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.227426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.237425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 LLDP, length 82 [|LLDP] 17:33:46.237425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.237425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.237425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f21 dfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.237425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.237425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.237426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.237426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.237426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.237426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.237426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.237426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.247429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 LLDP, length 82 [|LLDP] 17:33:46.247429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.247429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.247429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f29 80de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.247429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.247429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.247429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.247430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.247430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.247430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.257426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.257426 LLDP, length 82 [|LLDP] 17:33:46.257426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.257426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.257426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.257426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.257426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.257427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.257427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 21fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.257427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.257427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.257427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.257427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.257427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.257427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.267428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 LLDP, length 82 [|LLDP] 17:33:46.267428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.267428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.267428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f38 c31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.267428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.267428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.267428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.267428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.267429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.267429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 LLDP, length 82 [|LLDP] 17:33:46.277425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.277425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.277425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 643e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.277425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.277425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.277425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.277425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.277425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.287422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.287422 LLDP, length 82 [|LLDP] 17:33:46.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 055e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.287423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.287423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.297426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 LLDP, length 82 [|LLDP] 17:33:46.297426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.297426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.297426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4f a67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.297426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.297426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.297426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.297426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.297426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.297427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.297427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.297427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.307425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.307425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.307426 LLDP, length 82 [|LLDP] 17:33:46.307426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.307426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.307426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 479e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.307426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.307426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.307426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.307426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.307426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.307426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.307426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.317424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.317424 LLDP, length 82 [|LLDP] 17:33:46.317424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.317424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.317424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5e e8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.317424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.317424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.317425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.317425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.317425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.317425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.317425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.317425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.317425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.317425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.327425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.327425 LLDP, length 82 [|LLDP] 17:33:46.327425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.327426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.327426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f66 89de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.327426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.327426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.327426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.327426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.327426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.327426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.327426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.327426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.337425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 LLDP, length 82 [|LLDP] 17:33:46.337425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.337425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.337425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.337425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e 2afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.337425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.337425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.337425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.337426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.337426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.347429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.347429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.347429 LLDP, length 82 [|LLDP] 17:33:46.347430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.347430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.347430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f75 cc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.347430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.347430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.347430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.347430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.347430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.347430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.347430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.347430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.347430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.357426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.357426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.357426 LLDP, length 82 [|LLDP] 17:33:46.357426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.357426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.357426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d 6d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.357427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.357427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.357427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.357427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.357427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.357427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.357427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.357427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.357427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.367426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 LLDP, length 82 [|LLDP] 17:33:46.367426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.367426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.367426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.367426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.367426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 0e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.367427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.367427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.367427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.367427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.367427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.367427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.377425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.377425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.377425 LLDP, length 82 [|LLDP] 17:33:46.377425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.377425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.377425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8c af7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.377426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.377426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.377426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.377426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.377426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.377426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.377426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.387422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.387422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.387422 LLDP, length 82 [|LLDP] 17:33:46.387422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.387423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.387423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 509e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.387423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.387423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.387423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.387423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.387423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.387423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.387423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.387423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.387423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.397427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 LLDP, length 82 [|LLDP] 17:33:46.397427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.397427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.397427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9b f1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.397427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.397427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.397427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.397427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.397428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.397428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.397428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.397428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.407425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 LLDP, length 82 [|LLDP] 17:33:46.407425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.407425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.407425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa3 92de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.407425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.407425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.407425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.407426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.407426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.407426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.417424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 LLDP, length 82 [|LLDP] 17:33:46.417424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.417424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.417424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.417424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.417425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab 33fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.417425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.417425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.417425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.417425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.417425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.417425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.427425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.427425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.427425 LLDP, length 82 [|LLDP] 17:33:46.427425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.427425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.427425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb2 d51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.427425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.427425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.427426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.427426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.427426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.427426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.427426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.437425 LLDP, length 82 [|LLDP] 17:33:46.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.437425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba 763e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.437425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.437425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.437425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.447432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 LLDP, length 82 [|LLDP] 17:33:46.447432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.447432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.447432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.447432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.447432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 175e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.447432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.447432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.447433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.447433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.447433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.447433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.457425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 LLDP, length 82 [|LLDP] 17:33:46.457426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.457426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.457426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc9 b87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.457426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.457426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.457426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.457426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.457426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.457426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.457426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.457426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.467425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 LLDP, length 82 [|LLDP] 17:33:46.467425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.467425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.467425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 599e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.467425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.467425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.467425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.467425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.467425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.467426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.467426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.467426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.477426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.477426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.477426 LLDP, length 82 [|LLDP] 17:33:46.477426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.477426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.477426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd8 fabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.477427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.477427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.477427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.477427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.477427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.477427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.477427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.477427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.477427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.487424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 LLDP, length 82 [|LLDP] 17:33:46.487424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.487424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.487424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe0 9bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.487424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.487424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.487424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.487425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.487425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.487425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.497438 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.497438 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.497438 LLDP, length 82 [|LLDP] 17:33:46.497439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.497439 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.497439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.497439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.497439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.497439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 3cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.497439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.497439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.497439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.497439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.497439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.497439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.507423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 LLDP, length 82 [|LLDP] 17:33:46.507424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.507424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.507424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fef de1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.507424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.507424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.507424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.507424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.507424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.507424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.507424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.507424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.517422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 LLDP, length 82 [|LLDP] 17:33:46.517423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.517423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.517423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff7 7f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.517423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.517423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.517423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.517423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.517423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.517423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.527423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.527423 LLDP, length 82 [|LLDP] 17:33:46.527423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.527423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.527423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.527424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.527424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.527424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.527424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff 205e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.527424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.527424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.527424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.527424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.527424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.527424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.537424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.537424 LLDP, length 82 [|LLDP] 17:33:46.537424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.537424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.537424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1006 c17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.537424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.537424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.537424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.537424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.537425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.537425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.537425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.537425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.537425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.547432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 LLDP, length 82 [|LLDP] 17:33:46.547433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.547433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.547433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e 629e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.547433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.547433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.547433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.547433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.547433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.547433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.547433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.547433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.557427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.557427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.557427 LLDP, length 82 [|LLDP] 17:33:46.557427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.557427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.557427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 03be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.557427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.557428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.557428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.557428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.557428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.557428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.557428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.557428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.557428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.567425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.567425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.567425 LLDP, length 82 [|LLDP] 17:33:46.567425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.567425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.567425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101d a4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.567425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.567426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.567426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.567426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.567426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.567426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.567426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.567426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.567426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.577422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.577422 LLDP, length 82 [|LLDP] 17:33:46.577422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.577422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.577423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.577423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.577423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.577423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 45fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.577423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.577423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.577423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.577423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.577423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.587425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.587425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.587425 LLDP, length 82 [|LLDP] 17:33:46.587425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.587425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.587426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102c e71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.587426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.587426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.587426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.587426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.587426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.587426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.587426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.597426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.597426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.597426 LLDP, length 82 [|LLDP] 17:33:46.597426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.597426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.597426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1034 883e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.597426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.597426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.597427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.597427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.597427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.597427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.597427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.597427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.597427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.607424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 LLDP, length 82 [|LLDP] 17:33:46.607424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.607424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.607424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.607424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c 295e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.607424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.607424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.607424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.607425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.607425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.607425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.617423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.617423 LLDP, length 82 [|LLDP] 17:33:46.617423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.617423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.617423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1043 ca7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.617423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.617423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.617423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.617424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.617424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.617424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.617424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.617424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.617424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.617424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.627422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 LLDP, length 82 [|LLDP] 17:33:46.627422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.627422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.627422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b 6b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.627422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.627422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.627422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.627422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.627422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.627423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.627423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.627423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.637422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.637422 LLDP, length 82 [|LLDP] 17:33:46.637422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.637422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.637422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1053 0cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.637422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.637422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.637423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.637423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.637423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.637423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.637423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.637423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.637423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.637423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.647427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.647427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.647427 LLDP, length 82 [|LLDP] 17:33:46.647428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.647428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.647428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 105a adde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.647428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.647428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.647428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.647428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.647428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.647428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.647428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.647428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.647428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.657425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.657425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.657425 LLDP, length 82 [|LLDP] 17:33:46.657425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.657425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.657426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.657426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.657426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1062 4efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.657426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.657426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.657426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.657426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.657426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.667424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.667424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.667424 LLDP, length 82 [|LLDP] 17:33:46.667424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.667425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.667425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1069 f01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.667425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.667425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.667425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.667425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.667425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.667425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.667425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6646 packets captured 6646 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 2] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg2 with rc 0 and out 17:33:42.247474 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.247474 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.247474 LLDP, length 82 [|LLDP] 17:33:42.247474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.247474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.247474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033d bede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.247474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.247474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.247475 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.247475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.247475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.247475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.247475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.247475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.247475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.257441 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 LLDP, length 82 [|LLDP] 17:33:42.257441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.257441 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.257441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.257441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.257442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.257442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0345 5ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.257442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.257442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.257442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.257442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.257442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.257442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.267427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.267427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.267427 LLDP, length 82 [|LLDP] 17:33:42.267427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.267427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.267427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 011e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.267427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.267427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.267428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.267428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.267428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.267428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.267428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.277424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.277425 LLDP, length 82 [|LLDP] 17:33:42.277425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.277425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.277425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0354 a23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.277425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.277425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.277425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.277425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.277425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.277425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.287431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.287431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.287431 LLDP, length 82 [|LLDP] 17:33:42.287432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.287432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.287432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.287432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.287432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.287432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.287432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.287432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.287432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.287432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.287432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.287432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.297431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 LLDP, length 82 [|LLDP] 17:33:42.297431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.297431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.297431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0363 e47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.297431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.297431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.297431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.297431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.297431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.297431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.297432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.297432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.297432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.307422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 LLDP, length 82 [|LLDP] 17:33:42.307423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.307423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.307423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036b 859e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.307423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.307423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.307423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.307423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.307423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.307423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.307423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.317422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 LLDP, length 82 [|LLDP] 17:33:42.317422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.317422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.317422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 26be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.317422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.317422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.317422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.317423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.317423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.317423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.327426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 LLDP, length 82 [|LLDP] 17:33:42.327426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.327426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.327426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037a c7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.327426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.327426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.327426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.327426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.327426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.327426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.327427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.337431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.337431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.337432 LLDP, length 82 [|LLDP] 17:33:42.337432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.337432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.337432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.337432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.337432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.337432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 68fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.337432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.337432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.337432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.337432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.337432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.337432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.347424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 LLDP, length 82 [|LLDP] 17:33:42.347424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.347424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.347424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 0a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.347424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.347424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.347424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.347424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.347424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.347424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.347425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.347425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.347425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.357433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 LLDP, length 82 [|LLDP] 17:33:42.357433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.357433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.357433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0391 ab3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.357433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.357433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.357433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.357433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.357433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.357433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.357433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.357433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.357433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.367423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 LLDP, length 82 [|LLDP] 17:33:42.367423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.367423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.367423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.367423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.367423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 4c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.367423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.367423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.367424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.367424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.367424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.377424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.377424 LLDP, length 82 [|LLDP] 17:33:42.377424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.377424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.377424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a0 ed7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.377425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.377425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.377425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.377425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.377425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.377425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.387424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.387424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.387425 LLDP, length 82 [|LLDP] 17:33:42.387425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.387425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.387425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a8 8e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.387425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.387425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.387425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.387425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.387425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.387425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.387425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.387425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.387425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.397428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 LLDP, length 82 [|LLDP] 17:33:42.397428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.397428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.397428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 2fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.397428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.397428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.397428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.397428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.397428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.397428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.397429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.397429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.407423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.407423 LLDP, length 82 [|LLDP] 17:33:42.407423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.407423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.407423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b7 d0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.407423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.407424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.407424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.407424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.407424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.407424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.407424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.407424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.407424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.407424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.417428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.417428 LLDP, length 82 [|LLDP] 17:33:42.417428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.417428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.417429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.417429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.417429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.417429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.417429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf 71fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.417429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.417429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.417429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.417429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.417429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.417429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.427422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 LLDP, length 82 [|LLDP] 17:33:42.427422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.427422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.427422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 131e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.427422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.427422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.427422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.427422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.427422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.427422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.427423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.427423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.427423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.437432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 LLDP, length 82 [|LLDP] 17:33:42.437432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.437432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.437432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ce b43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.437432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.437432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.437432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.437432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.437433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.437433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.437433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.437433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.437433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.447429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 LLDP, length 82 [|LLDP] 17:33:42.447429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.447429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.447429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.447429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.447429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 555e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.447430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.447430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.447430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.447430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.447430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.447430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.457423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.457423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.457423 LLDP, length 82 [|LLDP] 17:33:42.457423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.457423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.457423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03dd f67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.457423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.457424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.457424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.457424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.457424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.457424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.457424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.457424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.457424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.467422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.467422 LLDP, length 82 [|LLDP] 17:33:42.467422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.467422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.467422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e5 979e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.467422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.467422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.467423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.467423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.467423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.467423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.467423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.467423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.467423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.467423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.477431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.477431 LLDP, length 82 [|LLDP] 17:33:42.477431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.477431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.477431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed 38be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.477431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.477431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.477432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.477432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.477432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.477432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.477432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.477432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.477432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.477432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.487423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.487423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.487423 LLDP, length 82 [|LLDP] 17:33:42.487423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.487424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.487424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f4 d9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.487424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.487424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.487424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.487424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.487424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.487424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.487424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.487424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.487424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.497426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 LLDP, length 82 [|LLDP] 17:33:42.497426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.497426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.497426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.497426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.497426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.497426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fc 7afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.497427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.497427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.497427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.497427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.497427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.497427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.507421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 LLDP, length 82 [|LLDP] 17:33:42.507421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.507421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.507421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 1c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.507421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.507421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.507421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.507422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.507422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.507422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.507422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.507422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.507422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.517423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 LLDP, length 82 [|LLDP] 17:33:42.517423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.517423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.517423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040b bd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.517423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.517423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.517423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.517423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.517424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.517424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.517424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.517424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.527421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.527421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.527421 LLDP, length 82 [|LLDP] 17:33:42.527421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.527421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.527421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.527422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.527422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.527422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 5e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.527422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.527422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.527422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.527422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.527422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.527422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.537423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 LLDP, length 82 [|LLDP] 17:33:42.537423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.537423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.537423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041a ff7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.537423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.537423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.537423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.537423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.537424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.537424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.537424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.547425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.547425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.547425 LLDP, length 82 [|LLDP] 17:33:42.547425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.547425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.547425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0422 a09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.547425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.547425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.547426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.547426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.547426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.547426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.547426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.547426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.547426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.557422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 LLDP, length 82 [|LLDP] 17:33:42.557423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.557423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.557423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a 41be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.557423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.557423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.557423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.557423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.557423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.557423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.557423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.567423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.567423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.567424 LLDP, length 82 [|LLDP] 17:33:42.567424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.567424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.567424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0431 e2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.567424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.567424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.567424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.567424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.567424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.567424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.567424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.577424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 LLDP, length 82 [|LLDP] 17:33:42.577424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.577424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.577424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.577424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.577424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.577425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0439 83fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.577425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.577425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.577425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.577425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.577425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.577425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.587421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.587421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.587421 LLDP, length 82 [|LLDP] 17:33:42.587421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.587421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.587422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 251e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.587422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.587422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.587422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.587422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.587422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.587422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.587422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.587422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.587422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.597427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.597427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.597427 LLDP, length 82 [|LLDP] 17:33:42.597427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.597427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.597427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0448 c63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.597427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.597427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.597428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.597428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.597428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.597428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.597428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.597428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.597428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.607422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.607422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.607423 LLDP, length 82 [|LLDP] 17:33:42.607423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.607423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.607423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.607423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.607423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.607423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 675e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.607423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.607423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.607423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.607423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.607423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.607423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.617422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.617422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.617422 LLDP, length 82 [|LLDP] 17:33:42.617422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.617423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.617423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 087e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.617423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.617423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.617423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.617423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.617423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.617423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.617423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.617423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.617423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.627421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.627421 LLDP, length 82 [|LLDP] 17:33:42.627421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.627421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.627421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045f a99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.627421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.627421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.627421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.627421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.627421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.627421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.627422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.627422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.627422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.627422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.637421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 LLDP, length 82 [|LLDP] 17:33:42.637421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.637421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.637421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 4abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.637421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.637421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.637421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.637421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.637421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.637422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.637422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.637422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.637422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.647446 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 LLDP, length 82 [|LLDP] 17:33:42.647446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.647446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.647446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046e ebde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.647446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.647446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.647446 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.647446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.647446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.647447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.647447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.647447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.647447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.657437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.657437 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.657438 LLDP, length 82 [|LLDP] 17:33:42.657438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.657438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.657438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.657438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.657438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.657438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0476 8cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.657438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.657438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.657438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.657438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.657438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.657438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.667427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.667427 LLDP, length 82 [|LLDP] 17:33:42.667427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.667427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.667427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e 2e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.667427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.667428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.667428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.667428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.667428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.667428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.667428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.667428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.667428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.667428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.677425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.677425 LLDP, length 82 [|LLDP] 17:33:42.677425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.677425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.677425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0485 cf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.677425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.677425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.677425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.677425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.677426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.677426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.677426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.677426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.677426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.677426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.687423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 LLDP, length 82 [|LLDP] 17:33:42.687424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.687424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.687424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.687424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.687424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.687424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d 705e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.687424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.687424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.687424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.687425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.687425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.697427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 LLDP, length 82 [|LLDP] 17:33:42.697427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.697427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.697427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 117e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.697427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.697427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.697427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.697427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.697428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.697428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.697428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.697428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.697428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.707424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 LLDP, length 82 [|LLDP] 17:33:42.707424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.707424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.707424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049c b29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.707424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.707424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.707424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.707424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.707424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.707425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.707425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.717424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.717424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.717424 LLDP, length 82 [|LLDP] 17:33:42.717424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.717424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.717424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 53be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.717424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.717425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.717425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.717425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.717425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.717425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.717425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.727421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 LLDP, length 82 [|LLDP] 17:33:42.727422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.727422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.727422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ab f4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.727422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.727422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.727422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.727422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.727422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.727422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.727422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.727422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.727422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.737425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 LLDP, length 82 [|LLDP] 17:33:42.737425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.737425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.737425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.737425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.737425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.737425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b3 95fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.737425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.737425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.737425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.737425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.737426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.737426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.747427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.747427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.747427 LLDP, length 82 [|LLDP] 17:33:42.747427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.747427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.747427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb 371e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.747427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.747428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.747428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.747428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.747428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.747428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.747428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.757424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 LLDP, length 82 [|LLDP] 17:33:42.757424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.757424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.757424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c2 d83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.757424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.757424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.757424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.757424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.757425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.757425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.757425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.757425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 LLDP, length 82 [|LLDP] 17:33:42.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ca 795e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.777425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 LLDP, length 82 [|LLDP] 17:33:42.777426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.777426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.777426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 1a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.777426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.777426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.777426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.777426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.777426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.777426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.777426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.787423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.787423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.787423 LLDP, length 82 [|LLDP] 17:33:42.787424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.787424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.787424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d9 bb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.787424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.787424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.787424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.787424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.787424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.787424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.787424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.787424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.787424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.797425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 LLDP, length 82 [|LLDP] 17:33:42.797426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.797426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.797426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 5cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.797426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.797426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.797426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.797426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.797426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.797426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.797426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.807425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.807425 LLDP, length 82 [|LLDP] 17:33:42.807425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.807425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.807426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e8 fdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.807426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.807426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.807426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.807426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.807426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.807426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.807426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.817423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 LLDP, length 82 [|LLDP] 17:33:42.817423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.817423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.817423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.817423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.817423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f0 9efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.817423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.817423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.817423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.817423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.817424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.827422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.827422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.827422 LLDP, length 82 [|LLDP] 17:33:42.827422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.827422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.827423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 401e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.827423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.827423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.827423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.827423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.827423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.827423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.827423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.827423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.827423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.837423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.837423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.837423 LLDP, length 82 [|LLDP] 17:33:42.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ff e13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.837424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.837424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.837424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.837424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.847424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.847424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.847424 LLDP, length 82 [|LLDP] 17:33:42.847425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.847425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.847425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.847425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.847425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.847425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0507 825e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.847425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.847425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.847425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.847425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.847425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.847425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.857421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.857421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.857422 LLDP, length 82 [|LLDP] 17:33:42.857422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.857422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.857422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f 237e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.857422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.857422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.857422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.857422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.857422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.857422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.857422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.867423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.867423 LLDP, length 82 [|LLDP] 17:33:42.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.867423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0516 c49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.877426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 LLDP, length 82 [|LLDP] 17:33:42.877426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.877426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.877426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e 65be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.877426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.877426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.877426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.877426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.877426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.877427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.877427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.887424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.887424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.887425 LLDP, length 82 [|LLDP] 17:33:42.887425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.887425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.887425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 06de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.887425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.887425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.887425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.887425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.887425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.887425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.887425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.897464 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 LLDP, length 82 [|LLDP] 17:33:42.897464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.897464 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.897464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.897464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.897464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.897464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052d a7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.897465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.897465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.897465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.897465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.897465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.897465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.907459 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 LLDP, length 82 [|LLDP] 17:33:42.907459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.907459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.907459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 491e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.907459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.907459 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.907459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.907459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.907459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.907459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.907459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.907459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.907460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.917444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.917444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.917445 LLDP, length 82 [|LLDP] 17:33:42.917445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.917445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.917445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053c ea3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.917445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.917445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.917445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.917445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.917445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.917445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.917445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.917445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.917445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.927425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.927425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.927425 LLDP, length 82 [|LLDP] 17:33:42.927425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.927425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.927426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.927426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.927426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0544 8b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.927426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.927426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.927426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.927426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.927426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.937423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.937423 LLDP, length 82 [|LLDP] 17:33:42.937423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.937423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.937423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c 2c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.937423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.937423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.937424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.937424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.937424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.937424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.937424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.947427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 LLDP, length 82 [|LLDP] 17:33:42.947427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.947427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.947427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0553 cd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.947427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.947427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.947427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.947427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.947428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.947428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.947428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.947428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.957424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 LLDP, length 82 [|LLDP] 17:33:42.957424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.957424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.957424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b 6ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.957424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.957425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.957425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.957425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.957425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.967424 LLDP, length 82 [|LLDP] 17:33:42.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.967425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.967425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 0fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.967425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.967425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.967425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.977422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 LLDP, length 82 [|LLDP] 17:33:42.977423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.977423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.977423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.977423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.977423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056a b0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.977423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.977423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.977423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.977423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.977423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.987431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 LLDP, length 82 [|LLDP] 17:33:42.987432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.987432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.987432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 521e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.987432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.987432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.987432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.987432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.987432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.987432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.987432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.987432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.987432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:42.997429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 LLDP, length 82 [|LLDP] 17:33:42.997429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:42.997429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:42.997429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0579 f33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:42.997429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:42.997429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:42.997429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:42.997429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:42.997429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.997430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:42.997430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:42.997430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:42.997430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.007428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 LLDP, length 82 [|LLDP] 17:33:43.007429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.007429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.007429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.007429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.007429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.007429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0581 945e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.007429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.007429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.007429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.007429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.007429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.007429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.017425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.017425 LLDP, length 82 [|LLDP] 17:33:43.017425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.017425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.017425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 357e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.017425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.017425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.017425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.017425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.017425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.017426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.017426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.017426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.017426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.027424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.027424 LLDP, length 82 [|LLDP] 17:33:43.027424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.027424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.027424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0590 d69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.027424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.027424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.027425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.027425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.027425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.027425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.027425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.027425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.037422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 LLDP, length 82 [|LLDP] 17:33:43.037422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.037422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.037422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.037422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.037422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.037422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.037422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.037422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.037423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.037423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.037423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.037423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.047427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 LLDP, length 82 [|LLDP] 17:33:43.047427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.047427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.047427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 18de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.047427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.047427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.047427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.047427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.047428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.047428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.047428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.057422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 LLDP, length 82 [|LLDP] 17:33:43.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a7 b9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.057423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.057423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.057423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.067425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 LLDP, length 82 [|LLDP] 17:33:43.067425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.067425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.067425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af 5b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.067425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.067425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.067425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.067426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.067426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.067426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.067426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.067426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.067426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.077423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 LLDP, length 82 [|LLDP] 17:33:43.077423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.077423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.077423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b6 fc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.077423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.077423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.077423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.077423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.077423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.077423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.077424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.077424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.087422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.087422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.087422 LLDP, length 82 [|LLDP] 17:33:43.087423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.087423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.087423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.087423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.087423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05be 9d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.087423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.087423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.087423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.087423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.087423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.097444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.097444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.097444 LLDP, length 82 [|LLDP] 17:33:43.097444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.097444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.097444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 3e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.097445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.097445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.097445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.097445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.097445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.097445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.097445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.097445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.097445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.107427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.107427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.107427 LLDP, length 82 [|LLDP] 17:33:43.107427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.107427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.107427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cd df9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.107427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.107427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.107428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.107428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.107428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.107428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.107428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.117425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.117425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.117426 LLDP, length 82 [|LLDP] 17:33:43.117426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.117426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.117426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d5 80be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.117426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.117426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.117426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.117426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.117426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.117426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.117426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.117426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.117426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.127423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.127423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.127423 LLDP, length 82 [|LLDP] 17:33:43.127423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.127423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.127423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd 21de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.127424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.127424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.127424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.127424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.127424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.127424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.127424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.127424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.127424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.137429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 LLDP, length 82 [|LLDP] 17:33:43.137429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.137429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.137429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.137430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.137430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.137430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e4 c2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.137430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.137430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.137430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.137430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.137430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.137430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.147434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.147434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.147434 LLDP, length 82 [|LLDP] 17:33:43.147434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.147434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.147434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec 641e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.147434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.147435 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.147435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.147435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.147435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.147435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.147435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.147435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.147435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.157433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 LLDP, length 82 [|LLDP] 17:33:43.157433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.157433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.157433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 053e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.157433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.157433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.157433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.157433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.157434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.157434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.157434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.167434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 LLDP, length 82 [|LLDP] 17:33:43.167434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.167434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.167434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.167434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.167434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.167434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fb a65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.167435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.167435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.167435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.167435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.167435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.167435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.177425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.177425 LLDP, length 82 [|LLDP] 17:33:43.177425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.177425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.177425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 477e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.177425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.177425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.177425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.177425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.177425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.177426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.177426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.177426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.177426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.177426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.187425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.187425 LLDP, length 82 [|LLDP] 17:33:43.187425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.187425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.187426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060a e89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.187426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.187426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.187426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.187426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.187426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.187426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.187426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.197424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.197424 LLDP, length 82 [|LLDP] 17:33:43.197424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.197424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.197424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0612 89be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.197424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.197424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.197425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.197425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.197425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.197425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.197425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.197425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.197425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.207425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.207425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.207425 LLDP, length 82 [|LLDP] 17:33:43.207425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.207426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a 2ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.207426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.207426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.207426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.217422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.217422 LLDP, length 82 [|LLDP] 17:33:43.217422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.217422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.217422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.217422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.217422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.217423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.217423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0621 cbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.217423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.217423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.217423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.217423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.217423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.217423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.227422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.227422 LLDP, length 82 [|LLDP] 17:33:43.227422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.227422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.227422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 6d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.227423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.227423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.227423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.227423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.227423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.227423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.227423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.227423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.227423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.227423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.237420 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.237420 LLDP, length 82 [|LLDP] 17:33:43.237421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.237421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.237421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 0e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.237421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.237421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.237421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.237421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.237421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.237421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.237421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.237421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.237421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.237421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.247422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 LLDP, length 82 [|LLDP] 17:33:43.247422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.247422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.247422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.247422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.247422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.247422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0638 af5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.247423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.247423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.247423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.247423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.247423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.257424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.257424 LLDP, length 82 [|LLDP] 17:33:43.257424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.257424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.257424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 507e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.257424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.257424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.257425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.257425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.257425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.257425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.257425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.257425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.257425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.257425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.267424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.267424 LLDP, length 82 [|LLDP] 17:33:43.267424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.267424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.267424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0647 f19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.267424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.267424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.267424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.267424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.267424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.267424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.267425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.267425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.267425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.267425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.277423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 LLDP, length 82 [|LLDP] 17:33:43.277423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.277423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.277423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064f 92be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.277423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.277423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.277423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.277423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.277424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.277424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.277424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.277424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.287423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 LLDP, length 82 [|LLDP] 17:33:43.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 33de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.287423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.287424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.297425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 LLDP, length 82 [|LLDP] 17:33:43.297425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.297425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.297425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.297425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.297425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.297425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065e d4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.297425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.297426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.297426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.297426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.297426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.297426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.307425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.307425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.307425 LLDP, length 82 [|LLDP] 17:33:43.307425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.307425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.307425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 761e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.307425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.307426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.307426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.307426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.307426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.307426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.307426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.317425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 LLDP, length 82 [|LLDP] 17:33:43.317426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.317426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.317426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 173e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.317426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.317426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.317426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.317426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.317426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.317426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.317426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.317426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.317426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.327424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 LLDP, length 82 [|LLDP] 17:33:43.327424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.327424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.327424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.327424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.327424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.327424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0675 b85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.327424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.327424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.327424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.327425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.327425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.337424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.337424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.337424 LLDP, length 82 [|LLDP] 17:33:43.337424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.337425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d 597e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.337425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.337425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.337425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.337425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.337425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.337425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.337425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.347422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 LLDP, length 82 [|LLDP] 17:33:43.347422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.347422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.347422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0684 fa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.347422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.347422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.347422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.347422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.347423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.347423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.347423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.357423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 LLDP, length 82 [|LLDP] 17:33:43.357423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.357423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.357423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068c 9bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.357423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.357423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.357423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.357423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.357423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.357424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.357424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.357424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.367422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.367422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.367422 LLDP, length 82 [|LLDP] 17:33:43.367422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.367422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.367422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 3cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.367422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.367423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.367423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.367423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.367423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.367423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.367423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.367423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.377424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 LLDP, length 82 [|LLDP] 17:33:43.377424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.377424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.377424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.377424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.377424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.377424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069b ddfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.377425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.377425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.377425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.377425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.387422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 LLDP, length 82 [|LLDP] 17:33:43.387422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.387422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.387422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a3 7f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.387422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.387422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.387422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.387422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.387422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.387422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.387422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.387423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.387423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.397457 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 LLDP, length 82 [|LLDP] 17:33:43.397457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.397457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.397457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab 203e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.397457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.397457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.397457 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.397457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.397457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.397457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.397457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.397457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.397457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.407463 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 LLDP, length 82 [|LLDP] 17:33:43.407463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.407463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.407463 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.407463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.407463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.407463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b2 c15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.407463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.407463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.407463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.407463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.407463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.407464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.417430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.417430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.417430 LLDP, length 82 [|LLDP] 17:33:43.417430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.417430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.417431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba 627e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.417431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.417431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.417431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.417431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.417431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.417431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.417431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.417431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.417431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.427432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 LLDP, length 82 [|LLDP] 17:33:43.427432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.427432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.427432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 039e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.427432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.427432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.427432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.427432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.427432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.427432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.427433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.427433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.427433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 LLDP, length 82 [|LLDP] 17:33:43.437426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.437426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.437426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c9 a4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.437426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.447428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 LLDP, length 82 [|LLDP] 17:33:43.447429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.447429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.447429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 45de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.447429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.447429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.447429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.447429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.447429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.447429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.447429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.447429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.457427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.457427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.457427 LLDP, length 82 [|LLDP] 17:33:43.457427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.457428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.457428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.457428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.457428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d8 e6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.457428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.457428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.457428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.457428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.457428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.467423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.467423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.467423 LLDP, length 82 [|LLDP] 17:33:43.467424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.467424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.467424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e0 881e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.467424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.467424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.467424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.467424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.467424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.467424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.467424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.467424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.467424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.477425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.477425 LLDP, length 82 [|LLDP] 17:33:43.477425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.477425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.477425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 293e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.477425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.477425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.477425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.477425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.477426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.477426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.477426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.477426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.487424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 LLDP, length 82 [|LLDP] 17:33:43.487425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.487425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.487425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.487425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.487425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ef ca5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.487425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.487425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.487425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.487425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.487425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.497432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.497432 LLDP, length 82 [|LLDP] 17:33:43.497432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.497432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.497433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 6b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.497433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.497433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.497433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.497433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.497433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.497433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.497433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.497433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.497433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.497433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.507427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.507427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.507427 LLDP, length 82 [|LLDP] 17:33:43.507427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.507427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.507427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 0c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.507427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.507428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.507428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.507428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.507428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.507428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.507428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.507428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.507428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.517445 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 LLDP, length 82 [|LLDP] 17:33:43.517445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.517445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.517445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0706 adbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.517445 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.517445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.517445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.517445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.517445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.517445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.517445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.517446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.517446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.527429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 LLDP, length 82 [|LLDP] 17:33:43.527429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.527429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.527429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e 4ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.527429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.527429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.527429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.527429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.527429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.527429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.527430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.527430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.527430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.537431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 LLDP, length 82 [|LLDP] 17:33:43.537431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.537431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.537431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.537431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.537431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.537431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0715 effe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.537431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.537431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.537431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.537432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.537432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.547423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.547423 LLDP, length 82 [|LLDP] 17:33:43.547423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.547423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.547423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071d 911e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.547423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.547424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.547424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.547424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.547424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.547424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.547424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.547424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.557426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 LLDP, length 82 [|LLDP] 17:33:43.557426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.557426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.557426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 323e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.557426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.557426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.557426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.557426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.557426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.557426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.557426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.557427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.557427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.567424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.567424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.567424 LLDP, length 82 [|LLDP] 17:33:43.567424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.567424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.567424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.567425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.567425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.567425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072c d35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.567425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.567425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.567425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.567425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.567425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.567425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.577423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 LLDP, length 82 [|LLDP] 17:33:43.577423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.577423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.577423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 747e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.577423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.577423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.577423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.577423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.577423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.577424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.577424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.587423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.587423 LLDP, length 82 [|LLDP] 17:33:43.587424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.587424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.587424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 159e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.587424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.587424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.587424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.587424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.587424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.587424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.587424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.587424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.587424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.587424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.597422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.597422 LLDP, length 82 [|LLDP] 17:33:43.597422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.597422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.597422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0743 b6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.597423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.597423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.597423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.597423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.597423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.597423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.597423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.597423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.607425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.607425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.607425 LLDP, length 82 [|LLDP] 17:33:43.607425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.607425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.607425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b 57de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.607426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.607426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.607426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.607426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.607426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.607426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.607426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.617425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 LLDP, length 82 [|LLDP] 17:33:43.617426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.617426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.617426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.617426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.617426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0752 f8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.617426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.617426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.617426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.617426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.617426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.627425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 LLDP, length 82 [|LLDP] 17:33:43.627425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.627425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.627425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075a 9a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.627425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.627425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.627425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.627425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.627425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.627426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.627426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.637424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.637424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.637424 LLDP, length 82 [|LLDP] 17:33:43.637424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.637424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.637424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 3b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.637425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.637425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.637425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.637425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.637425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.637425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.637425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.647424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 LLDP, length 82 [|LLDP] 17:33:43.647424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.647424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.647424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.647424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.647424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.647424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0769 dc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.647425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.647425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.647425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.647425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.647425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.647425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.657425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.657425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.657426 LLDP, length 82 [|LLDP] 17:33:43.657426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.657426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.657426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0771 7d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.657426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.657426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.657426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.657426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.657426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.657426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.657426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.667422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.667422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.667422 LLDP, length 82 [|LLDP] 17:33:43.667422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.667422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.667422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 1e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.667422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.667422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.667423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.667423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.667423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.667423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.667423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.667423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.667423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.677423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.677423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.677423 LLDP, length 82 [|LLDP] 17:33:43.677424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.677424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.677424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0780 bfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.677424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.677424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.677424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.677424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.677424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.677424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.677424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.677424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.677424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.687426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 LLDP, length 82 [|LLDP] 17:33:43.687426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.687426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.687426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 60de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.687426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.687426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.687426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.687426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.687426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.687426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.687427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.687427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.687427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.697422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.697422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.697422 LLDP, length 82 [|LLDP] 17:33:43.697422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.697422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.697423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.697423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.697423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 01fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.697423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.697423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.697423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.697423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.697423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.707426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 LLDP, length 82 [|LLDP] 17:33:43.707426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.707426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.707426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0797 a31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.707426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.707426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.707426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.707426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.707427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.707427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.707427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.707427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.707427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.717425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 LLDP, length 82 [|LLDP] 17:33:43.717425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.717425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.717425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f 443e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.717425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.717425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.717425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.717425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.717425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.717425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.717426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.717426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.727425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 LLDP, length 82 [|LLDP] 17:33:43.727425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.727425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.727425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.727425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.727425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.727425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a6 e55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.727425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.727425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.727425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.727426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.727426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.727426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.737429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 LLDP, length 82 [|LLDP] 17:33:43.737429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.737429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.737429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ae 867e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.737429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.737429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.737429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.737429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.737430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.737430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.737430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.737430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.737430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.747427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.747427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.747427 LLDP, length 82 [|LLDP] 17:33:43.747427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.747427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.747427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 279e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.747427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.747428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.747428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.747428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.747428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.747428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.747428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.747428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.757433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 LLDP, length 82 [|LLDP] 17:33:43.757433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.757433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.757433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bd c8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.757433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.757433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.757433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.757433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.757433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.757433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.757433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.757433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.757434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 LLDP, length 82 [|LLDP] 17:33:43.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 69de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.777429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 LLDP, length 82 [|LLDP] 17:33:43.777429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.777429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.777429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.777429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.777429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 0afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.777429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.777429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.777430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.777430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.777430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.777430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.787425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 LLDP, length 82 [|LLDP] 17:33:43.787426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.787426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.787426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d4 ac1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.787426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.787426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.787426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.787426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.787426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.787426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.787426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.787426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.787426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.797424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.797424 LLDP, length 82 [|LLDP] 17:33:43.797424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.797424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.797424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc 4d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.797425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.797425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.797425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.797425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.797425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.797425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.797425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.797425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.797425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.797425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.807429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 LLDP, length 82 [|LLDP] 17:33:43.807429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.807429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.807429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.807429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.807429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.807429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e3 ee5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.807429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.807429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.807429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.807429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.807430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.807430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.817425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 LLDP, length 82 [|LLDP] 17:33:43.817425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.817425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.817425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07eb 8f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.817425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.817425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.817425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.817425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.817425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.817425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.817425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.817426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.817426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.827425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.827425 LLDP, length 82 [|LLDP] 17:33:43.827425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.827425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.827425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 309e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.827425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.827425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.827425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.827425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.827425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.827425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.827426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.827426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.827426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.827426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.837424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 LLDP, length 82 [|LLDP] 17:33:43.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fa d1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.837424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.837425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.837425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.837425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.837425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.837425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.847425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.847425 LLDP, length 82 [|LLDP] 17:33:43.847425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.847425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.847425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 72de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.847426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.847426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.847426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.847426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.847426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.847426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.847426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.847426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.847426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.847426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.857431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 LLDP, length 82 [|LLDP] 17:33:43.857431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.857431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.857431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.857431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.857431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.857432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 13fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.857432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.857432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.857432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.857432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.857432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.857432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.867423 LLDP, length 82 [|LLDP] 17:33:43.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.867424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0811 b51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.867424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.877424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.877424 LLDP, length 82 [|LLDP] 17:33:43.877424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.877424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.877424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 563e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.877424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.877424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.877424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.877425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.877425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.877425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.877425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.877425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.887424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.887424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.887424 LLDP, length 82 [|LLDP] 17:33:43.887424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.887425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.887425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.887425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.887425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0820 f75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.887425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.887425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.887425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.887425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.887425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.887425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.897424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.897424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.897424 LLDP, length 82 [|LLDP] 17:33:43.897424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.897424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.897424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0828 987e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.897424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.897424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.897424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.897425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.897425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.897425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.897425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.907436 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.907436 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.907436 LLDP, length 82 [|LLDP] 17:33:43.907436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.907436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.907436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 399e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.907436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.907436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.907437 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.907437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.907437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.907437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.907437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.907437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.907437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.917425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 LLDP, length 82 [|LLDP] 17:33:43.917426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.917426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.917426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0837 dabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.917426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.917426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.917426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.917426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.917426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.917426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.917426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.927425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.927425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.927425 LLDP, length 82 [|LLDP] 17:33:43.927426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.927426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.927426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083f 7bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.927426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.927426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.927426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.927426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.927426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.927426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.927426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.927426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.937423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 LLDP, length 82 [|LLDP] 17:33:43.937423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.937423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.937423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.937423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.937423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.937423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 1cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.937423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.937423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.937424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.937424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.937424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.947423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.947423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.947423 LLDP, length 82 [|LLDP] 17:33:43.947423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.947423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.947423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084e be1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.947424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.947424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.947424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.947424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.947424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.947424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.947424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.947424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.947424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.957431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.957431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.957431 LLDP, length 82 [|LLDP] 17:33:43.957431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.957432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.957432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 5f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.957432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.957432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.957432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.957432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.957432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.957432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.957432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.957432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.957432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.967425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 LLDP, length 82 [|LLDP] 17:33:43.967425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.967425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.967425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 005e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.967426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.967426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.967426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.967426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.967426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.967426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.977423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 LLDP, length 82 [|LLDP] 17:33:43.977423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.977423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.977423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0865 a17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.977423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.977423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.977423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.977423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.977423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.977423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.977424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.977424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.987423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.987423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.987423 LLDP, length 82 [|LLDP] 17:33:43.987423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.987423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.987423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d 429e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.987423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.987424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.987424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.987424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.987424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.987424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.987424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.987424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.987424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:43.997423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.997423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:43.997423 LLDP, length 82 [|LLDP] 17:33:43.997423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:43.997423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:43.997424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0874 e3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:43.997424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:43.997424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:43.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.997424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:43.997424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:43.997424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:43.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:43.997424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:43.997424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.007423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.007423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.007423 LLDP, length 82 [|LLDP] 17:33:44.007423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.007423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.007423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087c 84de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.007423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.007424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.007424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.007424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.007424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.007424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.007424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.007424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.007424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.017433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.017433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.017434 LLDP, length 82 [|LLDP] 17:33:44.017434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.017434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.017434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.017434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.017434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.017434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 25fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.017434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.017434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.017434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.017434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.017434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.017434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.027424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 LLDP, length 82 [|LLDP] 17:33:44.027425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.027425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.027425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088b c71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.027425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.027425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.027425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.027425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.027425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.027425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.027425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.027425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.037422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.037422 LLDP, length 82 [|LLDP] 17:33:44.037422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.037422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.037422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 683e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.037422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.037422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.037422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.037422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.037422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.037423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.037423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.037423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.037423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.037423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.047422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.047422 LLDP, length 82 [|LLDP] 17:33:44.047422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.047422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.047423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.047423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.047423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.047423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.047423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 095e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.047423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.047423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.047423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.047423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.047423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.047423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.057423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.057423 LLDP, length 82 [|LLDP] 17:33:44.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a2 aa7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.057424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.057424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.057424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.057424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.067424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.067424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.067424 LLDP, length 82 [|LLDP] 17:33:44.067424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.067425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.067425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa 4b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.067425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.067425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.067425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.067425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.067425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.067425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.067425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.077424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 LLDP, length 82 [|LLDP] 17:33:44.077424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.077424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.077424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b1 ecbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.077424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.077424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.077424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.077424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.077424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.077424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.077424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.077425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.087422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.087422 LLDP, length 82 [|LLDP] 17:33:44.087422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.087422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.087422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b9 8dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.087422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.087422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.087422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.087423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.087423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.087423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.087423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.087423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.087423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.097421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.097421 LLDP, length 82 [|LLDP] 17:33:44.097421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.097421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.097421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.097421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.097422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.097422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.097422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 2efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.097422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.097422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.097422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.097422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.097422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.097422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.107423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 LLDP, length 82 [|LLDP] 17:33:44.107423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.107423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.107423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c8 d01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.107423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.107423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.107423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.107423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.107423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.107423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.107423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.107423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.107423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.117429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.117429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.117429 LLDP, length 82 [|LLDP] 17:33:44.117429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.117429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.117429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 713e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.117429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.117429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.117429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.117430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.117430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.117430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.117430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.117430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.117430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.127425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.127425 LLDP, length 82 [|LLDP] 17:33:44.127425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.127425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.127425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.127426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.127426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.127426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.127426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 125e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.127426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.127426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.127426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.127426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.127426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.127426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.137442 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.137442 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.137442 LLDP, length 82 [|LLDP] 17:33:44.137442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.137443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.137443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08df b37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.137443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.137443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.137443 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.137443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.137443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.137443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.137443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.137443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.137443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.147440 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.147440 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.147440 LLDP, length 82 [|LLDP] 17:33:44.147440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.147440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.147440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 549e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.147440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.147440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.147440 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.147441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.147441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.147441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.147441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.147441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.147441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.157437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 LLDP, length 82 [|LLDP] 17:33:44.157438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.157438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.157438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ee f5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.157438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.157438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.157438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.157438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.157438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.157438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.157438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.157438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.157438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.167437 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.167437 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.167437 LLDP, length 82 [|LLDP] 17:33:44.167438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.167438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.167438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f6 96de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.167438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.167438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.167438 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.167438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.167438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.167438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.167438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.167438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.167438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.177427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 LLDP, length 82 [|LLDP] 17:33:44.177427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.177427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.177427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.177427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.177427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe 37fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.177427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.177427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.177427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.177427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.177427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.187424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 LLDP, length 82 [|LLDP] 17:33:44.187424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.187424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.187424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0905 d91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.187424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.187424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.187424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.187424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.187424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.187424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.187424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.187424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.187425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.197423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.197423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.197423 LLDP, length 82 [|LLDP] 17:33:44.197423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.197423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.197424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090d 7a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.197424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.197424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.197424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.197424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.197424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.197424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.197424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.197424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.207424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 LLDP, length 82 [|LLDP] 17:33:44.207424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.207424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.207424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.207424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.207424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.207425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 1b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.207425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.207425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.207425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.207425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.207425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.207425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.217428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 LLDP, length 82 [|LLDP] 17:33:44.217428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.217428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.217428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091c bc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.217428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.217428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.217428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.217428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.217429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.217429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.217429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.217429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.217429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.227424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 LLDP, length 82 [|LLDP] 17:33:44.227424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.227424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.227424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 5d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.227424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.227424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.227424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.227424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.227424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.227424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.227424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.227424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.227425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.237423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.237423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.237423 LLDP, length 82 [|LLDP] 17:33:44.237423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.237423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.237423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092b febe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.237424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.237424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.237424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.237424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.237424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.237424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.237424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.237424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.237424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.247422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 LLDP, length 82 [|LLDP] 17:33:44.247423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.247423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.247423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0933 9fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.247423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.247423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.247423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.247423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.247423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.247423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.247423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.247423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.257422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 LLDP, length 82 [|LLDP] 17:33:44.257422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.257422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.257422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.257422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.257422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.257423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b 40fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.257423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.257423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.257423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.257423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.257423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.257423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.267434 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 LLDP, length 82 [|LLDP] 17:33:44.267434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.267434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.267434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0942 e21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.267434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.267434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.267434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.267434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.267434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.267434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.267434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.267435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.267435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 LLDP, length 82 [|LLDP] 17:33:44.277424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.277424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.277424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094a 833e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.277424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.277424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.277424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.277424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.277424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.277424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.277424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.287423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 LLDP, length 82 [|LLDP] 17:33:44.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 245e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.287424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.287424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.287424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.297422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 LLDP, length 82 [|LLDP] 17:33:44.297423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.297423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.297423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0959 c57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.297423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.297423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.297423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.297423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.297423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.297423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.297423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.297423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.297423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.307422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.307422 LLDP, length 82 [|LLDP] 17:33:44.307422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.307422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.307422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 669e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.307423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.307423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.307423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.307423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.307423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.307423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.307423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.307423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.307423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.315648 LLDP, length 219: localhost 17:33:44.317422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.317422 LLDP, length 82 [|LLDP] 17:33:44.317422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.317422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.317422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 07be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.317422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.317423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.317423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.317423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.317423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.317423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.317423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.327424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.327424 LLDP, length 82 [|LLDP] 17:33:44.327425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.327425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.327425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0970 a8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.327425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.327425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.327425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.327425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.327425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.327425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.327425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.327425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.327425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.337425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.337425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.337426 LLDP, length 82 [|LLDP] 17:33:44.337426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.337426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.337426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.337426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.337426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 49fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.337426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.337426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.337426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.337426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.337426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.347423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 LLDP, length 82 [|LLDP] 17:33:44.347423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.347423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.347423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097f eb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.347423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.347423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.347423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.347423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.347424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.347424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.347424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.347424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.357423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 LLDP, length 82 [|LLDP] 17:33:44.357424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.357424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.357424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0987 8c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.357424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.357424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.357424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.357424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.357424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.357424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.357424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.357424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.367427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 LLDP, length 82 [|LLDP] 17:33:44.367427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.367427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.367427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.367427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.367427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.367427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f 2d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.367427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.367428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.367428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.367428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.367428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.367428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.377443 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.377443 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.377443 LLDP, length 82 [|LLDP] 17:33:44.377443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.377443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.377443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0996 ce7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.377444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.377444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.377444 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.377444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.377444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.377444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.377444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.377444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.377444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.387428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.387428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.387428 LLDP, length 82 [|LLDP] 17:33:44.387428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.387428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.387428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e 6f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.387429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.387429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.387429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.387429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.387429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.387429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.387429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.387429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.387429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.397431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 LLDP, length 82 [|LLDP] 17:33:44.397431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.397431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.397431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 10be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.397431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.397431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.397431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.397431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.397431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.397431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.397431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.397432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.397432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.407426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.407426 LLDP, length 82 [|LLDP] 17:33:44.407426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.407426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.407426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ad b1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.407426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.407426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.407427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.407427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.407427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.407427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.407427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.407427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.407427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.407427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.417426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 LLDP, length 82 [|LLDP] 17:33:44.417426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.417426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.417426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.417426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.417426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.417426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 52fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.417426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.417426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.417427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.417427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.417427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.417427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.427426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 LLDP, length 82 [|LLDP] 17:33:44.427426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.427426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.427426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bc f41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.427426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.427426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.427426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.427426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.427426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.427427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.427427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.437425 LLDP, length 82 [|LLDP] 17:33:44.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.437426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c4 953e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.437426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.447426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.447426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.447426 LLDP, length 82 [|LLDP] 17:33:44.447426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.447426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.447427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.447427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.447427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc 365e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.447427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.447427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.447427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.447427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.447427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.457424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.457424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.457424 LLDP, length 82 [|LLDP] 17:33:44.457424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.457425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.457425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d3 d77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.457425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.457425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.457425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.457425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.457425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.457425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.457425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.457425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.457425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.467427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 LLDP, length 82 [|LLDP] 17:33:44.467428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.467428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.467428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db 789e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.467428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.467428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.467428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.467428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.467428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.467428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.467428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.467428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.467428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.477425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 LLDP, length 82 [|LLDP] 17:33:44.477425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.477425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.477425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 19be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.477425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.477425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.477425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.477425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.477425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.477425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.477426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.477426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.477426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.487425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.487425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.487425 LLDP, length 82 [|LLDP] 17:33:44.487425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.487426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.487426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ea bade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.487426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.487426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.487426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.487426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.487426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.487426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.487426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.487426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.487426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.497419 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 LLDP, length 82 [|LLDP] 17:33:44.497419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.497419 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.497419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.497419 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.497419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.497419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 5bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.497420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.497420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.497420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.497420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.497420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.497420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.507424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.507424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.507424 LLDP, length 82 [|LLDP] 17:33:44.507425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.507425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.507425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f9 fd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.507425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.507425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.507425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.507425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.507425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.507425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.507425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.507425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.507425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.517425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.517425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.517425 LLDP, length 82 [|LLDP] 17:33:44.517426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.517426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.517426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a01 9e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.517426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.517426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.517426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.517426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.517426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.517426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.517426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.517426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.517426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.527425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 LLDP, length 82 [|LLDP] 17:33:44.527425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.527425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.527425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.527425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.527425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.527425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 3f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.527425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.527425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.527425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.527426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.527426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.527426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.537431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.537431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.537431 LLDP, length 82 [|LLDP] 17:33:44.537431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.537431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.537431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a10 e07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.537432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.537432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.537432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.537432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.537432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.537432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.537432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.537432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.547428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.547428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.547428 LLDP, length 82 [|LLDP] 17:33:44.547428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.547428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.547428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a18 819e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.547428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.547428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.547429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.547429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.547429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.547429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.547429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.547429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.547429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.557424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.557424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.557424 LLDP, length 82 [|LLDP] 17:33:44.557424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.557425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.557425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 22be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.557425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.557425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.557425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.557425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.557425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.557425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.557425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.557425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.557425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.567429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.567429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.567429 LLDP, length 82 [|LLDP] 17:33:44.567430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.567430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.567430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a27 c3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.567430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.567430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.567430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.567430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.567430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.567430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.567430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.567430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.567430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.577425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 LLDP, length 82 [|LLDP] 17:33:44.577425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.577425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.577425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.577425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.577425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.577425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f 64fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.577425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.577426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.577426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.577426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.577426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.577426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.587424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.587424 LLDP, length 82 [|LLDP] 17:33:44.587424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.587424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.587424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 061e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.587425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.587425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.587425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.587425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.587425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.587425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.587425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.587425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.587425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.587425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.597424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.597424 LLDP, length 82 [|LLDP] 17:33:44.597425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.597425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.597425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3e a73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.597425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.597425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.597425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.597425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.597425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.597425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.597425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.597425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.597425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.597425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.607424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 LLDP, length 82 [|LLDP] 17:33:44.607424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.607424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.607424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.607424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.607424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 485e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.607424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.607424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.607424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.607424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.607425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.617426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 LLDP, length 82 [|LLDP] 17:33:44.617426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.617426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.617426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4d e97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.617426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.617426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.617426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.617426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.617426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.617426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.617427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.617427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.617427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.627424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 LLDP, length 82 [|LLDP] 17:33:44.627424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.627424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a55 8a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.627424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.627424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.627424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.627424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.627424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.627425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.627425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.637424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.637424 LLDP, length 82 [|LLDP] 17:33:44.637424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.637424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.637424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d 2bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.637424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.637425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.637425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.637425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.637425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.637425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.637425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.637425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.637425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.647430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.647430 LLDP, length 82 [|LLDP] 17:33:44.647430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.647430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.647430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a64 ccde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.647430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.647430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.647430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.647431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.647431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.647431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.647431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.647431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.647431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.647431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.657422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 LLDP, length 82 [|LLDP] 17:33:44.657422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.657422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.657422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.657422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.657422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.657422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c 6dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.657423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.657423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.657423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.657423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.657423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.657423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.667425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 LLDP, length 82 [|LLDP] 17:33:44.667425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.667425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.667425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 0f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.667425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.667425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.667425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.667425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.667425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.667425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.667425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.677427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 LLDP, length 82 [|LLDP] 17:33:44.677427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.677427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.677427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7b b03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.677427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.677427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.677427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.677427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.677427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.677427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.677427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.677427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.677428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.687424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.687424 LLDP, length 82 [|LLDP] 17:33:44.687424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.687424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.687424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.687425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.687425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.687425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 515e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.687425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.687425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.687425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.687425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.687425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.687425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.697423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.697423 LLDP, length 82 [|LLDP] 17:33:44.697423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.697423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.697423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8a f27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.697423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.697423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.697423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.697423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.697423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.697423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.697424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.697424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.697424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.697424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.707423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.707423 LLDP, length 82 [|LLDP] 17:33:44.707423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.707423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.707423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a92 939e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.707424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.707424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.707424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.707424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.707424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.707424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.707424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.707424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.707424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.717423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 LLDP, length 82 [|LLDP] 17:33:44.717423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.717423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.717423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a 34be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.717423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.717423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.717423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.717423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.717424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.717424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.717424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.717424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.717424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.727427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.727427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.727427 LLDP, length 82 [|LLDP] 17:33:44.727427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.727427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.727427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa1 d5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.727428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.727428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.727428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.727428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.727428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.727428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.727428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.727428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.727428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.737423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 LLDP, length 82 [|LLDP] 17:33:44.737423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.737423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.737423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.737423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.737423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.737424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 76fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.737424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.737424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.737424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.737424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.737424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.737424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.747422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 LLDP, length 82 [|LLDP] 17:33:44.747422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.747422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.747422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 181e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.747422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.747422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.747422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.747422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.747422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.747422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.747422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.747422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.747423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.757423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.757423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.757423 LLDP, length 82 [|LLDP] 17:33:44.757423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.757423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.757423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab8 b93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.757423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.757424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.757424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.757424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.757424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.757424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.757424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.757424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.767424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.767424 LLDP, length 82 [|LLDP] 17:33:44.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.767425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.767425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.767425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.767425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.767425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 5a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.767425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.767425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.767425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.767425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.767425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.767425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.777425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.777425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.777425 LLDP, length 82 [|LLDP] 17:33:44.777425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.777425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.777425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac7 fb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.777426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.777426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.777426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.777426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.777426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.777426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.777426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.777426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.787421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 LLDP, length 82 [|LLDP] 17:33:44.787422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.787422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.787422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acf 9c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.787422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.787422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.787422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.787422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.787422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.787422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.787422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.787422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.787422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.797423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 LLDP, length 82 [|LLDP] 17:33:44.797423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.797423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.797423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 3dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.797423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.797423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.797423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.797423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.797424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.797424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.797424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.797424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.797424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.807425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.807425 LLDP, length 82 [|LLDP] 17:33:44.807426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.807426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.807426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ade dede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.807426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.807426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.807426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.807426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.807426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.807426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.807426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.807426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.817423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 LLDP, length 82 [|LLDP] 17:33:44.817423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.817423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.817423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.817423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.817423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.817424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae6 7ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.817424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.817424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.817424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.817424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.817424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.817424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.827426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.827426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.827426 LLDP, length 82 [|LLDP] 17:33:44.827426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.827426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.827426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee 211e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.827426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.827426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.827427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.827427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.827427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.827427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.827427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.837423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 LLDP, length 82 [|LLDP] 17:33:44.837424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.837424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.837424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af5 c23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.837424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.837424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.837424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.837424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.837424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.837424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.837424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.837424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.847422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.847422 LLDP, length 82 [|LLDP] 17:33:44.847422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.847422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.847423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.847423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.847423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.847423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.847423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd 635e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.847423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.847423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.847423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.847423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.847423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.847423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.857422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 LLDP, length 82 [|LLDP] 17:33:44.857422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.857422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.857422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 047e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.857422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.857422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.857422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.857422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.857422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.857422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.857423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.857423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.857423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.867421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 LLDP, length 82 [|LLDP] 17:33:44.867421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.867421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.867421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0c a59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.867421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.867421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.867421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.867421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.867421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.867422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.867422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.877425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 LLDP, length 82 [|LLDP] 17:33:44.877426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.877426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.877426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 46be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.877426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.877426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.877426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.877426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.877426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.877426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.877426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.877426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.887427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 LLDP, length 82 [|LLDP] 17:33:44.887427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.887427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.887427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1b e7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.887427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.887427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.887427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.887427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.887428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.887428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.887428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.887428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.887428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.897424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 LLDP, length 82 [|LLDP] 17:33:44.897424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.897424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.897424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.897424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.897424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.897424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b23 88fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.897424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.897424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.897425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.897425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.897425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.897425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.907423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.907423 LLDP, length 82 [|LLDP] 17:33:44.907423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.907423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.907423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b 2a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.907423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.907423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.907423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.907423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.907423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.907424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.907424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.907424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.907424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.907424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.917423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.917423 LLDP, length 82 [|LLDP] 17:33:44.917423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.917424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.917424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b32 cb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.917424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.917424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.917424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.917424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.917424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.917424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.917424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.917424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.917424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.917424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.927429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 LLDP, length 82 [|LLDP] 17:33:44.927429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.927429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.927429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.927429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.927429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.927429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a 6c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.927429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.927429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.927429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.927429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.927430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.927430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.937424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.937424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.937425 LLDP, length 82 [|LLDP] 17:33:44.937425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.937425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.937425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 0d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.937425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.937425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.937425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.937425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.937425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.937425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.937425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.937425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.937425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.947424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.947424 LLDP, length 82 [|LLDP] 17:33:44.947424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.947424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.947424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b49 ae9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.947425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.947425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.947425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.947425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.947425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.947425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.947425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.947425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.947425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.947425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.957423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.957423 LLDP, length 82 [|LLDP] 17:33:44.957423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.957423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.957423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 4fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.957423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.957424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.957424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.957424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.957424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.957424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.957424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.967424 LLDP, length 82 [|LLDP] 17:33:44.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.967424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.967424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b58 f0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.967424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.967424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.967425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.967425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.967425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.967425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.967425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.977426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.977426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.977427 LLDP, length 82 [|LLDP] 17:33:44.977427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.977427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.977427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.977427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.977427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.977427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b60 91fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.977427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.977427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.977427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.977427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.977427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.977427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.987423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 LLDP, length 82 [|LLDP] 17:33:44.987423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.987423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.987423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 331e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.987423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.987423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.987423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.987423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.987423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.987423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.987423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.987423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.987424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:44.997423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.997423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:44.997424 LLDP, length 82 [|LLDP] 17:33:44.997424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:44.997424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:44.997424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6f d43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:44.997424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:44.997424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:44.997424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:44.997424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:44.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.997424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:44.997424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:44.997424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:44.997424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.007426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.007426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.007426 LLDP, length 82 [|LLDP] 17:33:45.007426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.007426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.007426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.007427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.007427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.007427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 755e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.007427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.007427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.007427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.007427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.007427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.007427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.017426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 LLDP, length 82 [|LLDP] 17:33:45.017426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.017426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.017426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 167e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.017426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.017426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.017426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.017426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.017426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.017426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.017427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.017427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.027426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.027426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.027426 LLDP, length 82 [|LLDP] 17:33:45.027426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.027426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.027426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b86 b79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.027426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.027426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.027427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.027427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.027427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.027427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.027427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.037425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 LLDP, length 82 [|LLDP] 17:33:45.037425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.037425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.037425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e 58be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.037425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.037425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.037426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.037426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.037426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.037426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.037426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.037426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.037426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.047425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.047425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.047425 LLDP, length 82 [|LLDP] 17:33:45.047425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.047425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.047425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b95 f9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.047425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.047425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.047426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.047426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.047426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.047426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.047426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.047426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.047426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.057423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 LLDP, length 82 [|LLDP] 17:33:45.057423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.057423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.057423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.057423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.057423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9d 9afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.057423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.057423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.057423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.057423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.057424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.057424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.067424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 LLDP, length 82 [|LLDP] 17:33:45.067424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.067424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.067424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 3c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.067424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.067424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.067424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.067424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.067424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.067425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.067425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.067425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.067425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.077426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 LLDP, length 82 [|LLDP] 17:33:45.077426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.077426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.077426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bac dd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.077426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.077426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.077426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.077426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.077426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.077427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.077427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.087425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 LLDP, length 82 [|LLDP] 17:33:45.087425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.087425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.087425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.087425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.087425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.087426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb4 7e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.087426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.087426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.087426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.087426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.087426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.087426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.097431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 LLDP, length 82 [|LLDP] 17:33:45.097432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.097432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.097432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc 1f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.097432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.097432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.097432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.097432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.097432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.097432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.097432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.097432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.097432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.107427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 LLDP, length 82 [|LLDP] 17:33:45.107428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.107428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.107428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc3 c09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.107428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.107428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.107428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.107428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.107428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.107428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.107428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.107428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.117427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 LLDP, length 82 [|LLDP] 17:33:45.117427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.117427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.117427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb 61be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.117427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.117427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.117427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.117427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.117427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.117427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.117428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.117428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.117428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.127427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.127427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.127428 LLDP, length 82 [|LLDP] 17:33:45.127428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.127428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.127428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 02de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.127428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.127428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.127428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.127428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.127428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.127428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.127428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.137441 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 LLDP, length 82 [|LLDP] 17:33:45.137441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.137441 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.137441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.137441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.137441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.137441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bda a3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.137441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.137442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.137442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.137442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.137442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.137442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.147424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.147424 LLDP, length 82 [|LLDP] 17:33:45.147424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.147424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.147424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 451e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.147424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.147424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.147424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.147424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.147424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.147425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.147425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.147425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.147425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.147425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.157433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.157433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.157433 LLDP, length 82 [|LLDP] 17:33:45.157433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.157433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.157434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be9 e63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.157434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.157434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.157434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.157434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.157434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.157434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.157434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.157434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.167427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 LLDP, length 82 [|LLDP] 17:33:45.167427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.167427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.167427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.167427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.167427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.167427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf1 875e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.167427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.167427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.167427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.167427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.167427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.167428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.177427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 LLDP, length 82 [|LLDP] 17:33:45.177427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.177427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.177427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 287e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.177427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.177427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.177427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.177427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.177427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.177427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.177428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.177428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.177428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.187429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.187429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.187429 LLDP, length 82 [|LLDP] 17:33:45.187429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.187429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.187429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c00 c99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.187429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.187429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.187429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.187430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.187430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.187430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.187430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.187430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.187430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.197426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 LLDP, length 82 [|LLDP] 17:33:45.197426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.197426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.197426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 6abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.197426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.197426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.197427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.197427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.197427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.197427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.197427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.197427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.197427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.207425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.207425 LLDP, length 82 [|LLDP] 17:33:45.207425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.207425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 0bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.207426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.207426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.207426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.207426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.217424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 LLDP, length 82 [|LLDP] 17:33:45.217424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.217424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.217424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.217424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.217425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c17 acfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.217425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.217425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.217425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.217425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.217425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.217425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.227428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 LLDP, length 82 [|LLDP] 17:33:45.227428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.227428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.227428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f 4e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.227428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.227428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.227428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.227428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.227428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.227428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.227429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.227429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.227429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.237444 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 LLDP, length 82 [|LLDP] 17:33:45.237444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.237444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.237444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c26 ef3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.237444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.237444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.237444 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.237444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.237445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.237445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.237445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.237445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.237445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.247429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.247429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.247429 LLDP, length 82 [|LLDP] 17:33:45.247429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.247429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.247430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.247430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.247430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2e 905e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.247430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.247430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.247430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.247430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.247430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.257430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 LLDP, length 82 [|LLDP] 17:33:45.257430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.257430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.257430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 317e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.257430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.257430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.257430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.257430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.257430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.257430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.257430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.257431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.257431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.267431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.267431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.267431 LLDP, length 82 [|LLDP] 17:33:45.267432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.267432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.267432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3d d29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.267432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.267432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.267432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.267432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.267432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.267432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.267432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.267432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.267432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.277430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.277430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.277430 LLDP, length 82 [|LLDP] 17:33:45.277430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.277430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.277430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 73be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.277431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.277431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.277431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.277431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.277431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.277431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.277431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.277431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.277431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.287425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.287425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.287425 LLDP, length 82 [|LLDP] 17:33:45.287425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.287425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.287425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 14de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.287426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.287426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.287426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.287426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.287426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.287426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.287426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.287426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.287426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.297424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 LLDP, length 82 [|LLDP] 17:33:45.297424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.297424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.297424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.297424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.297424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.297424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c54 b5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.297425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.297425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.297425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.297425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.297425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.297425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.307424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 LLDP, length 82 [|LLDP] 17:33:45.307424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.307424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.307424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c 571e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.307424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.307424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.307424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.307424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.307424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.307425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.307425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.307425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.307425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.317423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 LLDP, length 82 [|LLDP] 17:33:45.317423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.317423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.317423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c63 f83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.317423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.317423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.317423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.317423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.317424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.317424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.317424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.317424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.317424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.327435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 LLDP, length 82 [|LLDP] 17:33:45.327435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.327435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.327435 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.327435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.327435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.327435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6b 995e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.327435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.327435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.327435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.327435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.327436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.327436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.337424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 LLDP, length 82 [|LLDP] 17:33:45.337424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.337424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.337424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 3a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.337424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.337424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.337424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.337424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.337424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.337424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.337424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.337424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.337424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.347422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.347422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.347423 LLDP, length 82 [|LLDP] 17:33:45.347423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.347423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.347423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7a db9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.347423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.347423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.347423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.347423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.347423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.347423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.347423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.347423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.357421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.357421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.357421 LLDP, length 82 [|LLDP] 17:33:45.357422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.357422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.357422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c82 7cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.357422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.357422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.357422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.357422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.357422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.357422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.357422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.357422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.357422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.367423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.367423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.367424 LLDP, length 82 [|LLDP] 17:33:45.367424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.367424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.367424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a 1dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.367424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.367424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.367424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.367424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.367424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.367424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.367424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.367424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.377432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.377432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.377433 LLDP, length 82 [|LLDP] 17:33:45.377433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.377433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.377433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.377433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.377433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.377433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c91 befe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.377433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.377433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.377433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.377433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.377433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.377433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.387427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.387427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.387427 LLDP, length 82 [|LLDP] 17:33:45.387427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.387427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.387427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 601e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.387427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.387427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.387428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.387428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.387428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.387428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.387428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.387428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.387428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.397428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.397428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.397428 LLDP, length 82 [|LLDP] 17:33:45.397428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.397428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.397428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 013e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.397429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.397429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.397429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.397429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.397429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.397429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.397429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.397429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.407425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.407425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.407425 LLDP, length 82 [|LLDP] 17:33:45.407425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.407425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.407425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.407426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.407426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca8 a25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.407426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.407426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.407426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.407426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.407426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.417421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.417421 LLDP, length 82 [|LLDP] 17:33:45.417421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.417421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.417422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 437e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.417422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.417422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.417422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.417422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.417422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.417422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.417422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.417422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.417422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.417422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.427427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.427427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.427427 LLDP, length 82 [|LLDP] 17:33:45.427427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.427427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.427428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb7 e49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.427428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.427428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.427428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.427428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.427428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.427428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.427428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.427428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.427428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 LLDP, length 82 [|LLDP] 17:33:45.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.437425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbf 85be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.437425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.437425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.437425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.437426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.437426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.447426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 LLDP, length 82 [|LLDP] 17:33:45.447427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.447427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.447427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 26de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.447427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.447427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.447427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.447427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.447427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.447427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.447427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.447427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.457427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 LLDP, length 82 [|LLDP] 17:33:45.457427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.457427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.457427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.457427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.457427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.457427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cce c7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.457428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.457428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.457428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.457428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.457428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.457428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.467421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.467421 LLDP, length 82 [|LLDP] 17:33:45.467421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.467421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.467421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 691e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.467421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.467421 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.467421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.467422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.467422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.467422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.467422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.467422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.467422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.467422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.477422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.477422 LLDP, length 82 [|LLDP] 17:33:45.477422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.477422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.477422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 0a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.477422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.477422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.477422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.477422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.477422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.477422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.477423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.477423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.477423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.477423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.487427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 LLDP, length 82 [|LLDP] 17:33:45.487427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.487427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.487427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.487427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.487427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.487427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce5 ab5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.487427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.487427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.487428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.487428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.487428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.487428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.497424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.497424 LLDP, length 82 [|LLDP] 17:33:45.497424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.497424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.497424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced 4c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.497425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.497425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.497425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.497425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.497425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.497425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.497425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.497425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.497425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.497425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.507426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 LLDP, length 82 [|LLDP] 17:33:45.507426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.507426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.507426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf4 ed9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.507426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.507426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.507426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.507426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.507426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.507426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.507426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.507427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.507427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.517424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.517424 LLDP, length 82 [|LLDP] 17:33:45.517424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.517424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.517424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfc 8ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.517424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.517424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.517425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.517425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.517425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.517425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.517425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.517425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.517425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.517425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.527426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 LLDP, length 82 [|LLDP] 17:33:45.527426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.527426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.527426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 2fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.527426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.527426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.527426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.527426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.527426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.527427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.527427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.527427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.527427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.537429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 LLDP, length 82 [|LLDP] 17:33:45.537429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.537429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.537429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.537429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.537429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.537429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0b d0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.537430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.537430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.537430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.537430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.537430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.537430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.547423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.547423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.547423 LLDP, length 82 [|LLDP] 17:33:45.547423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.547424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.547424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 721e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.547424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.547424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.547424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.547424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.547424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.547424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.547424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.547424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.557435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.557435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.557435 LLDP, length 82 [|LLDP] 17:33:45.557435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.557435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.557435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.557435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.557435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.557436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.557436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.557436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.557436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.557436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.557436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.557436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.567423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 LLDP, length 82 [|LLDP] 17:33:45.567423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.567423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.567423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.567423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.567423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.567423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d22 b45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.567423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.567424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.567424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.567424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.567424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.567424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.577421 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.577421 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.577421 LLDP, length 82 [|LLDP] 17:33:45.577421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.577421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.577421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a 557e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.577422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.577422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.577422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.577422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.577422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.577422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.577422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.587426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 LLDP, length 82 [|LLDP] 17:33:45.587426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.587426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.587426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d31 f69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.587426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.587426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.587426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.587426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.587426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.587426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.587427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.597423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 LLDP, length 82 [|LLDP] 17:33:45.597423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.597423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.597423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d39 97be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.597423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.597423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.597423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.597424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.597424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.597424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.597424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.597424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.597424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.607425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 LLDP, length 82 [|LLDP] 17:33:45.607425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.607425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.607425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 38de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.607425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.607425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.607425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.607425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.607426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.607426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.607426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.607426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.617424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.617424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.617425 LLDP, length 82 [|LLDP] 17:33:45.617425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.617425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.617425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.617425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.617425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.617425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d48 d9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.617425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.617425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.617425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.617425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.617425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.617425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.627424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 LLDP, length 82 [|LLDP] 17:33:45.627424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.627424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d50 7b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.627424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.627424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.627424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.627424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.627424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.627424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.627425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.627425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.627425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.637427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.637427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.637428 LLDP, length 82 [|LLDP] 17:33:45.637428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.637428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.637428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 1c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.637428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.637428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.637428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.637428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.637428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.637428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.637428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.637428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.637428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.647465 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.647465 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.647465 LLDP, length 82 [|LLDP] 17:33:45.647466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.647466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.647466 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.647466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.647466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.647466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5f bd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.647466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.647466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.647466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.647466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.647466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.647466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.657455 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.657455 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.657455 LLDP, length 82 [|LLDP] 17:33:45.657455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.657455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.657455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.657456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.657456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.657456 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.657456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.657456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.657456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.657456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.657456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.657456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.667435 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.667435 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.667435 LLDP, length 82 [|LLDP] 17:33:45.667435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.667435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.667435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6e ff9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.667436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.667436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.667436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.667436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.667436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.667436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.667436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.667436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.667436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.677430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 LLDP, length 82 [|LLDP] 17:33:45.677430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.677430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.677430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d76 a0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.677430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.677430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.677430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.677430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.677430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.677431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.677431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.677431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.677431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.687436 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 LLDP, length 82 [|LLDP] 17:33:45.687436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.687436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.687436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e 41de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.687436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.687436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.687436 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.687436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.687436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.687436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.687436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.687436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.687437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.697429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 LLDP, length 82 [|LLDP] 17:33:45.697430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.697430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.697430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.697430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.697430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.697430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d85 e2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.697430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.697430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.697430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.697430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.697430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.697430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.707427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.707427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.707428 LLDP, length 82 [|LLDP] 17:33:45.707428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.707428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.707428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8d 841e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.707428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.707428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.707428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.707428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.707428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.707428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.707428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.707428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.707428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.717428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.717428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.717428 LLDP, length 82 [|LLDP] 17:33:45.717429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.717429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.717429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 253e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.717429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.717429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.717429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.717429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.717429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.717429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.717429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.717429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.717429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.727425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 LLDP, length 82 [|LLDP] 17:33:45.727425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.727425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.727425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.727425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.727425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.727425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9c c65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.727425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.727425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.727425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.727426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.727426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.727426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.737428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 LLDP, length 82 [|LLDP] 17:33:45.737429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.737429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.737429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 677e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.737429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.737429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.737429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.737429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.737429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.737429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.737429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.737429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.737429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.747425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.747425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.747426 LLDP, length 82 [|LLDP] 17:33:45.747426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.747426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.747426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 089e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.747426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.747426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.747426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.747426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.747426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.747426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.747426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.747426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.747426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.757426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 LLDP, length 82 [|LLDP] 17:33:45.757426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.757426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.757426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db3 a9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.757426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.757426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.757426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.757426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.757426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.757426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.757426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.757427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.757427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.767423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.767423 LLDP, length 82 [|LLDP] 17:33:45.767424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.767424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.767424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb 4ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.767424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.767424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.767424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.767424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.767424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.767424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.767424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.767424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.767424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.777428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 LLDP, length 82 [|LLDP] 17:33:45.777428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.777428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.777428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.777429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.777429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc2 ebfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.777429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.777429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.777429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.777429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.777429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.777429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.787430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 LLDP, length 82 [|LLDP] 17:33:45.787430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.787430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.787430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dca 8d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.787430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.787430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.787430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.787430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.787430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.787430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.787430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.787431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.787431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.797426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 LLDP, length 82 [|LLDP] 17:33:45.797426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.797426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.797426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 2e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.797426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.797426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.797426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.797426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.797426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.797426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.797427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.797427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.807424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.807424 LLDP, length 82 [|LLDP] 17:33:45.807424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.807425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.807425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.807425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.807425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.807425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.807425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd9 cf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.807425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.807425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.807425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.807425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.807425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.807425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.817426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.817426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.817427 LLDP, length 82 [|LLDP] 17:33:45.817427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.817427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.817427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 707e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.817427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.817427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.817427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.817427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.817427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.817427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.817427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.817427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.817427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.827426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.827426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.827426 LLDP, length 82 [|LLDP] 17:33:45.827426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.827426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.827426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 119e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.827426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.827427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.827427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.827427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.827427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.827427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.827427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.827427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.837427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 LLDP, length 82 [|LLDP] 17:33:45.837427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.837427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.837427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df0 b2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.837427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.837427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.837427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.837428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.837428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.837428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.837428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.837428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.837428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.847427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 LLDP, length 82 [|LLDP] 17:33:45.847427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.847427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.847427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 53de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.847427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.847427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.847427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.847427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.847427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.847427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.847428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.847428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.847428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.857424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 LLDP, length 82 [|LLDP] 17:33:45.857424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.857424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.857424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.857424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.857424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.857424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dff f4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.857424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.857424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.857424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.857424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.857425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.857425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.867423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.867423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.867423 LLDP, length 82 [|LLDP] 17:33:45.867423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.867423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.867424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e07 961e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.867424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.867424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.867424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.867424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.867424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.867424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.867424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.867424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.877425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 LLDP, length 82 [|LLDP] 17:33:45.877425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.877425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.877425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f 373e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.877425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.877425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.877425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.877425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.877425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.877425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.877426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.877426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.887440 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 LLDP, length 82 [|LLDP] 17:33:45.887440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.887440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.887440 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.887440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.887440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.887441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e16 d85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.887441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.887441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.887441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.887441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.887441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.887441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.897423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 LLDP, length 82 [|LLDP] 17:33:45.897423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.897423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.897423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1e 797e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.897423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.897423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.897423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.897423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.897423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.897423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.897424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.897424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.897424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.907426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.907426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.907426 LLDP, length 82 [|LLDP] 17:33:45.907427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.907427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.907427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 1a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.907427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.907427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.907427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.907427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.907427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.907427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.907427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.907427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.907427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.917425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 LLDP, length 82 [|LLDP] 17:33:45.917425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.917425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.917425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2d bbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.917425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.917425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.917425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.917426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.917426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.917426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.917426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.917426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.917426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.927433 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.927433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.927433 LLDP, length 82 [|LLDP] 17:33:45.927434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.927434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.927434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 5cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.927434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.927434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.927434 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.927434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.927434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.927434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.927434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.937443 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 LLDP, length 82 [|LLDP] 17:33:45.937443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.937443 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.937443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.937443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.937443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.937443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3c fdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.937443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.937444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.937444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.937444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.937444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.937444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.947426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.947426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.947426 LLDP, length 82 [|LLDP] 17:33:45.947426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.947427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.947427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e44 9f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.947427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.947427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.947427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.947427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.947427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.947427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.947427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.947427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.957424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.957424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.957424 LLDP, length 82 [|LLDP] 17:33:45.957424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.957424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.957424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c 403e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.957424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.957425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.957425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.957425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.957425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.957425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.957425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.957425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.967424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 LLDP, length 82 [|LLDP] 17:33:45.967424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.967424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.967424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.967424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.967424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.967424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e53 e15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.967424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.967424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.967424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.967424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.967425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.967425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.977424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.977424 LLDP, length 82 [|LLDP] 17:33:45.977424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.977424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.977424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5b 827e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.977424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.977424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.977424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.977424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.977424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.977425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.977425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.977425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.977425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.977425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.987427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.987427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.987427 LLDP, length 82 [|LLDP] 17:33:45.987427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.987427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.987427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 239e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.987427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.987427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.987428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.987428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.987428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.987428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.987428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.987428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.987428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:45.997425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.997425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:45.997425 LLDP, length 82 [|LLDP] 17:33:45.997426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:45.997426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:45.997426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6a c4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:45.997426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:45.997426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:45.997426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.997426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:45.997426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:45.997426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:45.997426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:45.997426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:45.997426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.007425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.007425 LLDP, length 82 [|LLDP] 17:33:46.007425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.007425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.007425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 65de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.007425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.007425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.007425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.007425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.007425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.007426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.007426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.007426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.007426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.007426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.017423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.017423 LLDP, length 82 [|LLDP] 17:33:46.017423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.017423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.017423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.017423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.017423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.017424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.017424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 06fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.017424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.017424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.017424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.017424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.017424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.017424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.027426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.027426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.027426 LLDP, length 82 [|LLDP] 17:33:46.027426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.027426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.027427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e81 a81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.027427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.027427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.027427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.027427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.027427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.027427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.027427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.027427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.037430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 LLDP, length 82 [|LLDP] 17:33:46.037430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.037430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.037430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 493e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.037430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.037430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.037430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.037430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.037430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.037430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.037431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.037431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.037431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.047425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 LLDP, length 82 [|LLDP] 17:33:46.047425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.047425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.047425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.047425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.047425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.047425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e90 ea5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.047425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.047425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.047425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.047425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.047426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.047426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.057425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 LLDP, length 82 [|LLDP] 17:33:46.057425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.057425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.057425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e98 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.057425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.057425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.057425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.057425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.057425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.057425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.057426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.057426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.057426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.067423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.067423 LLDP, length 82 [|LLDP] 17:33:46.067423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.067423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.067423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 2c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.067423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.067423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.067423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.067423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.067423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.067423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.067424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.067424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.067424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.067424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.077425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 LLDP, length 82 [|LLDP] 17:33:46.077425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.077425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.077425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea7 cdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.077425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.077425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.077425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.077425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.077425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.077426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.077426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.077426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.077426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.087430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 LLDP, length 82 [|LLDP] 17:33:46.087430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.087430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.087430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf 6ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.087430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.087430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.087430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.087430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.087430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.087430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.087430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.087430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.087431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.097448 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.097448 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.097448 LLDP, length 82 [|LLDP] 17:33:46.097448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.097448 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.097449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.097449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.097449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.097449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 0ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.097449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.097449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.097449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.097449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.097449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.097449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.107432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.107432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.107432 LLDP, length 82 [|LLDP] 17:33:46.107432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.107432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.107432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebe b11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.107432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.107432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.107433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.107433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.107433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.107433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.107433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.107433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.107433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.117431 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.117431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.117431 LLDP, length 82 [|LLDP] 17:33:46.117431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.117431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.117432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 523e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.117432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.117432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.117432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.117432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.117432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.117432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.117432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.117432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.117432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.127427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.127427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.127427 LLDP, length 82 [|LLDP] 17:33:46.127427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.127428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.127428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.127428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.127428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecd f35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.127428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.127428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.127428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.127428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.127428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.127428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.137428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.137428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.137429 LLDP, length 82 [|LLDP] 17:33:46.137429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.137429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.137429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed5 947e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.137429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.137429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.137429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.137429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.137429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.137429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.137429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.137429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.137429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.147430 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 LLDP, length 82 [|LLDP] 17:33:46.147431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.147431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.147431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd 359e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.147431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.147431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.147431 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.147431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.147431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.147431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.147431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.147431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.147431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.157424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 LLDP, length 82 [|LLDP] 17:33:46.157424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.157424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.157424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee4 d6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.157424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.157424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.157424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.157424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.157424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.157424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.157425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.157425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.157425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.167427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.167427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.167427 LLDP, length 82 [|LLDP] 17:33:46.167427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.167427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.167427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.167427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.167427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.167427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.167428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.167428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.167428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.167428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.167428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.167428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.177424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 LLDP, length 82 [|LLDP] 17:33:46.177424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.177424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.177424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.177424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.177424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.177424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 18fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.177425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.177425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.177425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.177425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.177425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.177425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.187425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 LLDP, length 82 [|LLDP] 17:33:46.187425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.187425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.187425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efb ba1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.187425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.187425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.187425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.187425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.187425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.187426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.187426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.187426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.197439 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 LLDP, length 82 [|LLDP] 17:33:46.197439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.197439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.197439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 5b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.197439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.197439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.197439 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.197439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.197439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.197439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.197439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.197440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.197440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.207426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 LLDP, length 82 [|LLDP] 17:33:46.207426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.207426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.207426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.207426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.207426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.207426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0a fc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.207426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.207426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.207427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.207427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.207427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.207427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.217423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 LLDP, length 82 [|LLDP] 17:33:46.217424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.217424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.217424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f12 9d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.217424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.217424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.217424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.217424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.217424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.217424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.217424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.217424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.227425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 LLDP, length 82 [|LLDP] 17:33:46.227425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.227425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.227425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a 3e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.227425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.227425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.227425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.227425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.227426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.227426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.227426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.227426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.227426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.237425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 LLDP, length 82 [|LLDP] 17:33:46.237425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.237425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.237425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f21 dfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.237425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.237425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.237425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.237426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.237426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.237426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.237426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.237426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.237426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.247429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 LLDP, length 82 [|LLDP] 17:33:46.247429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.247429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.247429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f29 80de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.247429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.247429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.247429 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.247429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.247430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.247430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.247430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.247430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.257426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.257426 LLDP, length 82 [|LLDP] 17:33:46.257426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.257426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.257426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.257426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.257426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.257427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.257427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 21fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.257427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.257427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.257427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.257427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.257427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.257427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.267428 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 LLDP, length 82 [|LLDP] 17:33:46.267428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.267428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.267428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f38 c31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.267428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.267428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.267428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.267428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.267428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.267428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.267429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.267429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.277424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 LLDP, length 82 [|LLDP] 17:33:46.277425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.277425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.277425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 643e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.277425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.277425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.277425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.277425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.277425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.277425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.277425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.277425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.287422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.287422 LLDP, length 82 [|LLDP] 17:33:46.287423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.287423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.287423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.287423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.287423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.287423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 055e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.287423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.287423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.287423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.287423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.287423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.287423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.297426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 LLDP, length 82 [|LLDP] 17:33:46.297426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.297426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.297426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4f a67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.297426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.297426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.297426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.297426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.297426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.297426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.297427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.297427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.297427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.307425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.307425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.307426 LLDP, length 82 [|LLDP] 17:33:46.307426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.307426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.307426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 479e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.307426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.307426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.307426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.307426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.307426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.307426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.307426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.307426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.317424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.317424 LLDP, length 82 [|LLDP] 17:33:46.317424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.317424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.317424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5e e8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.317424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.317424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.317425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.317425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.317425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.317425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.317425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.317425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.317425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.317425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.327425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.327425 LLDP, length 82 [|LLDP] 17:33:46.327425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.327426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.327426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f66 89de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.327426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.327426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.327426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.327426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.327426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.327426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.327426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.327426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.327426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.337425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 LLDP, length 82 [|LLDP] 17:33:46.337425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.337425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.337425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.337425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.337425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e 2afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.337425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.337425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.337425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.337426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.337426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.337426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.347429 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.347429 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.347429 LLDP, length 82 [|LLDP] 17:33:46.347430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.347430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.347430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f75 cc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.347430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.347430 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.347430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.347430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.347430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.347430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.347430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.347430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.347430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.357426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.357426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.357426 LLDP, length 82 [|LLDP] 17:33:46.357426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.357426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.357426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d 6d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.357427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.357427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.357427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.357427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.357427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.357427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.357427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.357427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.357427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.367426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 LLDP, length 82 [|LLDP] 17:33:46.367426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.367426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.367426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.367426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.367426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.367426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 0e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.367427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.367427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.367427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.367427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.367427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.367427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.377425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.377425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.377425 LLDP, length 82 [|LLDP] 17:33:46.377425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.377425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.377425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8c af7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.377425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.377425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.377426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.377426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.377426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.377426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.377426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.377426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.377426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.387422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.387422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.387422 LLDP, length 82 [|LLDP] 17:33:46.387422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.387423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.387423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 509e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.387423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.387423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.387423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.387423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.387423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.387423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.387423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.387423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.387423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.397427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 LLDP, length 82 [|LLDP] 17:33:46.397427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.397427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.397427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9b f1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.397427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.397427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.397427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.397427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.397427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.397428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.397428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.397428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.397428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.407425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 LLDP, length 82 [|LLDP] 17:33:46.407425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.407425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.407425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa3 92de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.407425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.407425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.407425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.407425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.407426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.407426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.407426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.407426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.417424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 LLDP, length 82 [|LLDP] 17:33:46.417424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.417424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.417424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.417424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.417424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.417425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab 33fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.417425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.417425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.417425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.417425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.417425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.417425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.427425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.427425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.427425 LLDP, length 82 [|LLDP] 17:33:46.427425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.427425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.427425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb2 d51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.427425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.427425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.427426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.427426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.427426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.427426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.427426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.427426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.437425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.437425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.437425 LLDP, length 82 [|LLDP] 17:33:46.437425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.437425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.437425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba 763e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.437425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.437425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.437425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.437426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.437426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.437426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.437426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.437426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.447432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 LLDP, length 82 [|LLDP] 17:33:46.447432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.447432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.447432 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.447432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.447432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.447432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 175e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.447432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.447432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.447433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.447433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.447433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.447433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.457425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 LLDP, length 82 [|LLDP] 17:33:46.457426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.457426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.457426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc9 b87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.457426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.457426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.457426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.457426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.457426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.457426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.457426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.457426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.457426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.467425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 LLDP, length 82 [|LLDP] 17:33:46.467425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.467425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.467425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 599e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.467425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.467425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.467425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.467425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.467425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.467425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.467426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.467426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.467426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.477426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.477426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.477426 LLDP, length 82 [|LLDP] 17:33:46.477426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.477426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.477426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd8 fabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.477427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.477427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.477427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.477427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.477427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.477427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.477427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.477427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.477427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.487424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 LLDP, length 82 [|LLDP] 17:33:46.487424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.487424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.487424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe0 9bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.487424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.487424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.487424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.487424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.487425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.487425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.487425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.487425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.497438 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.497438 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.497438 LLDP, length 82 [|LLDP] 17:33:46.497439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.497439 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.497439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.497439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.497439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.497439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 3cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.497439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.497439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.497439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.497439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.497439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.497439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.507423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 LLDP, length 82 [|LLDP] 17:33:46.507424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.507424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.507424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fef de1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.507424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.507424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.507424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.507424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.507424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.507424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.507424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.507424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.507424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.517422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 LLDP, length 82 [|LLDP] 17:33:46.517423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.517423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.517423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff7 7f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.517423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.517423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.517423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.517423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.517423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.517423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.517423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.517423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.527423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.527423 LLDP, length 82 [|LLDP] 17:33:46.527423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.527423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.527423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.527424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.527424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.527424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.527424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff 205e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.527424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.527424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.527424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.527424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.527424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.527424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.537424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.537424 LLDP, length 82 [|LLDP] 17:33:46.537424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.537424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.537424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1006 c17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.537424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.537424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.537424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.537424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.537424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.537425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.537425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.537425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.537425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.537425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.547432 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 LLDP, length 82 [|LLDP] 17:33:46.547433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.547433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.547433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e 629e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.547433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.547433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.547433 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.547433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.547433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.547433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.547433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.547433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.547433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.557427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.557427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.557427 LLDP, length 82 [|LLDP] 17:33:46.557427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.557427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.557427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 03be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.557427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.557428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.557428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.557428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.557428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.557428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.557428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.557428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.557428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.567425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.567425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.567425 LLDP, length 82 [|LLDP] 17:33:46.567425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.567425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.567425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101d a4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.567425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.567426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.567426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.567426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.567426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.567426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.567426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.567426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.567426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.577422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.577422 LLDP, length 82 [|LLDP] 17:33:46.577422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.577422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.577423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.577423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.577423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.577423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 45fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.577423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.577423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.577423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.577423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.577423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.577423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.587425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.587425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.587425 LLDP, length 82 [|LLDP] 17:33:46.587425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.587425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.587426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102c e71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.587426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.587426 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.587426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.587426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.587426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.587426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.587426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.587426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.597426 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.597426 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.597426 LLDP, length 82 [|LLDP] 17:33:46.597426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.597426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.597426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1034 883e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.597426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.597426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.597427 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.597427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.597427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.597427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.597427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.597427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.597427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.607424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 LLDP, length 82 [|LLDP] 17:33:46.607424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.607424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.607424 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.607424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.607424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.607424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c 295e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.607424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.607424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.607424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.607425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.607425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.607425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.617423 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.617423 LLDP, length 82 [|LLDP] 17:33:46.617423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.617423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.617423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1043 ca7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.617423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.617423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.617423 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.617424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.617424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.617424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.617424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.617424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.617424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.617424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.627422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 LLDP, length 82 [|LLDP] 17:33:46.627422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.627422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.627422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b 6b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.627422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.627422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.627422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.627422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.627422 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.627422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.627423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.627423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.627423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.637422 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.637422 LLDP, length 82 [|LLDP] 17:33:46.637422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.637422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.637422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1053 0cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.637422 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.637422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.637423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.637423 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.637423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.637423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.637423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.637423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.637423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.637423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.647427 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.647427 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.647427 LLDP, length 82 [|LLDP] 17:33:46.647428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.647428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.647428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 105a adde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.647428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.647428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.647428 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.647428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.647428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.647428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.647428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.647428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.647428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.657425 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.657425 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.657425 LLDP, length 82 [|LLDP] 17:33:46.657425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.657425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.657426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.657426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.657426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1062 4efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.657426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.657426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.657426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.657426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.657426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.657426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:33:46.667424 IP 1.1.1.2.41471 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.667424 IP 1.1.1.2.7436 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:33:46.667424 LLDP, length 82 [|LLDP] 17:33:46.667424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:33:46.667425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:33:46.667425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1069 f01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:33:46.667425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:33:46.667425 IP 192.168.1.1.43628 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:33:46.667425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:33:46.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.667425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:33:46.667425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:33:46.667425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:33:46.667425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:33:46.667425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6646 packets captured 6646 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:33:55 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:33:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:33:57 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG agg2:Logger.py:156 []
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif 247.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2305' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.2, port 35994 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:33:57 PM UTC INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 2] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg2... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0cf70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI BridgedLLDP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI LACPDU SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4ToMe SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Request_BC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI ARP_Reply SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Broadcast SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_SSH SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_Telnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_ICMP_Request SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DCHP_BC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Reserved_MC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_OSPFIGP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_VRRP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_IGMP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPV4_BGP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG agg2:Logger.py:156 17:37:50.074863 LLDP, length 82 [|LLDP] 17:37:50.074863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.074863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034b 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.074863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.074863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.074863 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.074863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.074863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.074864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.074864 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.074864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.074864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.074864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.074864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.074864 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.084812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.084812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.084813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.084813 LLDP, length 82 [|LLDP] 17:37:50.084813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.084813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0352 a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.084813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.084813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.084813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.084813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.084813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.084813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.094813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.094813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.094813 LLDP, length 82 [|LLDP] 17:37:50.094813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.094813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035a 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.094813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.094813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.094813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.094813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.094813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.094814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.094814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.094814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.094814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.094814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.104814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.104814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.104814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.104814 LLDP, length 82 [|LLDP] 17:37:50.104815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.104815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0361 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.104815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.104815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.104815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.104815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.104815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.104815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.114815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.114815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.114815 LLDP, length 82 [|LLDP] 17:37:50.114815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.114815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0369 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.114815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.114815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.114816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.114816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.114816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.114816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.114816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.114816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.114816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.114816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.124821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.124821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.124821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.124821 LLDP, length 82 [|LLDP] 17:37:50.124822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.124822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0371 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.124822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.124822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.124822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.124822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.124822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.124822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.134812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.134812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.134812 LLDP, length 82 [|LLDP] 17:37:50.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.134812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0378 c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.134813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.134813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.134813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.134813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.134813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.134813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.134813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.144813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.144813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.144814 LLDP, length 82 [|LLDP] 17:37:50.144814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.144814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0380 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.144814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.144814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.144814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.144814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.144814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.144814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.154812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.154812 LLDP, length 82 [|LLDP] 17:37:50.154812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.154812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0388 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.154812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.154812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.154812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.154812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.154812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.164809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.164809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.164809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.164809 LLDP, length 82 [|LLDP] 17:37:50.164809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.164809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038f ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.164810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.164810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.164810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.164810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.164810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.164810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.164810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.174802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.174802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.174802 LLDP, length 82 [|LLDP] 17:37:50.174802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.174803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0397 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.174803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.174803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.174803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.174803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.184805 LLDP, length 82 [|LLDP] 17:37:50.184805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.184805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 039e eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.184805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.184805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.184806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.184806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.194807 LLDP, length 82 [|LLDP] 17:37:50.194807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.194807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a6 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.194807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.194807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.194808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.194808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.194808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.194808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.204833 LLDP, length 82 [|LLDP] 17:37:50.204834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.204834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ae 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.204834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.204834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.204834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.204834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.204834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.204834 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.204834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.204834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.204834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.214814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.214814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.214815 LLDP, length 82 [|LLDP] 17:37:50.214815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.214815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b5 d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.214815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.214815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.214815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.214815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.214815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.214815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.214815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.224815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.224816 LLDP, length 82 [|LLDP] 17:37:50.224816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.224816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bd 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.224816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.224816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.224816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.224816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.224816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.224816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.234815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.234816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.234816 LLDP, length 82 [|LLDP] 17:37:50.234816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.234816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c5 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.234816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.234816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.234816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.234816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.234816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.234816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.234816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.234816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.234816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.234817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.244821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.244821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.244821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.244821 LLDP, length 82 [|LLDP] 17:37:50.244821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.244821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cc b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.244821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.244821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.244822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.244822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.244822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.244822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.244822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.244822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.244822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.254813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.254813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.254813 LLDP, length 82 [|LLDP] 17:37:50.254813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.254813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d4 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.254813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.254814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.254814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.254814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.254814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.254814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.254814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.264809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.264810 LLDP, length 82 [|LLDP] 17:37:50.264810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.264810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03db f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.264810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.264810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.264810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.274802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.274803 LLDP, length 82 [|LLDP] 17:37:50.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e3 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.274803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.274803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.284804 LLDP, length 82 [|LLDP] 17:37:50.284804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.284804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03eb 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.284804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.284804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.284804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.284804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.284804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.284805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.294823 LLDP, length 82 [|LLDP] 17:37:50.294823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.294823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f2 db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.294823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.294823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.294824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.294824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.294824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.294824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.304839 LLDP, length 82 [|LLDP] 17:37:50.304839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.304839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fa 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.304839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.304839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.304839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.304839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.304839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.304839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.304840 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.304840 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.304840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.304840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.304840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.304840 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.314815 LLDP, length 82 [|LLDP] 17:37:50.314815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.314815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0402 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.314815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.314815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.314815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.314815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.314815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.314816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.314816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.324815 LLDP, length 82 [|LLDP] 17:37:50.324815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.324815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0409 be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.324815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.324815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.324815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.324815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.324815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.324816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.324816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.334820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.334820 LLDP, length 82 [|LLDP] 17:37:50.334820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.334820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0411 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.334820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.334820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.334820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.334820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.334821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.334821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.334821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.334821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.334821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.344814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.344814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.344815 LLDP, length 82 [|LLDP] 17:37:50.344815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.344815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0419 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.344815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.344815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.344815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.344815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.344815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.344815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.354813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.354813 LLDP, length 82 [|LLDP] 17:37:50.354813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.354813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0420 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.354814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.354814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.354814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.354814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.354814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.354814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.364809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.364810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.364810 LLDP, length 82 [|LLDP] 17:37:50.364810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.364810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0428 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.364810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.364810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.364810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.364810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.364810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.364810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.364810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.374805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.374805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.374805 LLDP, length 82 [|LLDP] 17:37:50.374805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.374805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042f e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.374805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.374805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.374805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.374805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.384803 LLDP, length 82 [|LLDP] 17:37:50.384803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.384803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0437 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.384804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.384804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.384804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.384804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.384804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.384804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.394805 LLDP, length 82 [|LLDP] 17:37:50.394805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.394805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 043f 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.394805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.394805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.394805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.394805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.394805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.394805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.404815 LLDP, length 82 [|LLDP] 17:37:50.404815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.404815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0446 c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.404816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.404816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.404816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.404816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.404816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.404816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.404816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.404816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.404816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.414811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.414811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.414811 LLDP, length 82 [|LLDP] 17:37:50.414811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.414811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 044e 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.414811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.414811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.414811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.414811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.414812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.414812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.414812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.414812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.414812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.414812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.424811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.424811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.424811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.424811 LLDP, length 82 [|LLDP] 17:37:50.424811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.424811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0456 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.424811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.424811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.424812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.424812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.424812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.424812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.424812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.424812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.424812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.434822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.434822 LLDP, length 82 [|LLDP] 17:37:50.434822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.434822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045d aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.434822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.434822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.434822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.434822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.434822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.434822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.434822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.434823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.444816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.444816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.444816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.444816 LLDP, length 82 [|LLDP] 17:37:50.444816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.444816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0465 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.444816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.444816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.444817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.444817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.444817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.444817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.444817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.444817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.444817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.454830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.454831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.454831 LLDP, length 82 [|LLDP] 17:37:50.454831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.454831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046c ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.454831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.454831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.454831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.454831 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.454831 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.454831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.454831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.464812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.464813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.464813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.464813 LLDP, length 82 [|LLDP] 17:37:50.464813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.464813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0474 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.464813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.464813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.464813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.464813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.464813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.464813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.464813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.474803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.474803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.474803 LLDP, length 82 [|LLDP] 17:37:50.474803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.474803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047c 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.474804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.474804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.474804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.474804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.484809 LLDP, length 82 [|LLDP] 17:37:50.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0483 d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.484810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.484810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.494807 LLDP, length 82 [|LLDP] 17:37:50.494807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.494807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048b 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.494807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.494807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.494807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.494807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.494807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.494807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.504821 LLDP, length 82 [|LLDP] 17:37:50.504822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.504822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0493 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.504822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.504822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.504822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.504822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.504822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.504822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.504822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.514815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.514815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.514821 LLDP, length 82 [|LLDP] 17:37:50.514821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.514821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049a b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.514821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.514821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.514821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.514822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.514822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.514822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.514822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.514822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.514822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.524815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.524815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.524815 LLDP, length 82 [|LLDP] 17:37:50.524815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.524815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a2 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.524815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.524815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.524815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.524815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.524815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.524815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.524816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.534813 LLDP, length 82 [|LLDP] 17:37:50.534813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.534813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a9 f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.534813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.534813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.534813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.534813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.534813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.534814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.534814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.544813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.544813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.544813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.544813 LLDP, length 82 [|LLDP] 17:37:50.544813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.544813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b1 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.544813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.544813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.544813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.544813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.544813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.544814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.544814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.544814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.544814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.554814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.554814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.554814 LLDP, length 82 [|LLDP] 17:37:50.554814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.554814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b9 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.554814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.554814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.554814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.554814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.554814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.554815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.554815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.554815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.554815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.554815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.564811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.564811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.564811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.564811 LLDP, length 82 [|LLDP] 17:37:50.564811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.564811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c0 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.564811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.564811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.564811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.564811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.564812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.564812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.564812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.574806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.574807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.574807 LLDP, length 82 [|LLDP] 17:37:50.574807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.574807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c8 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.574807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.574807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.574807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.574807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.584803 LLDP, length 82 [|LLDP] 17:37:50.584803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.584803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d0 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.584803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.584803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.584803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.584803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.584803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.584803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.594806 LLDP, length 82 [|LLDP] 17:37:50.594806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.594806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d7 bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.594806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.594806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.594806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.594807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.604831 LLDP, length 82 [|LLDP] 17:37:50.604831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.604831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04df 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.604831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.604831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.604831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.604831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.604832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.604832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.604832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.604832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.604832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.604832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.604832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.604832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.614816 LLDP, length 82 [|LLDP] 17:37:50.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e6 ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.614817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.614817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.624814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.624814 LLDP, length 82 [|LLDP] 17:37:50.624815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.624815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ee a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.624815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.624815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.624815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.624815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.624815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.624815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.634815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.634816 LLDP, length 82 [|LLDP] 17:37:50.634816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.634816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f6 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.634816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.634816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.634816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.634816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.634816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.634816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.644814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.644814 LLDP, length 82 [|LLDP] 17:37:50.644814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.644815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04fd e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.644815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.644815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.644815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.644815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.644815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.644815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.654822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.654822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.654822 LLDP, length 82 [|LLDP] 17:37:50.654822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.654822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0505 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.654822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.654822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.654822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.654822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.654822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.654823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.654823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.654823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.654823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.654823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.664812 LLDP, length 82 [|LLDP] 17:37:50.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.664813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050d 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.664813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.664813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.664813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.664813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.674805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.674805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.674805 LLDP, length 82 [|LLDP] 17:37:50.674805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.674805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0514 c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.674805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.674805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.674805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.674805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.684803 LLDP, length 82 [|LLDP] 17:37:50.684803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.684803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051c 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.684803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.684803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.684803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.684803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.684803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.684803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.694804 LLDP, length 82 [|LLDP] 17:37:50.694804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.694805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0524 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.694805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.694805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.694805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.694805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.694805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.694805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.704814 LLDP, length 82 [|LLDP] 17:37:50.704814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.704815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052b a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.704815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.704815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.704815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.704815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.704815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.704815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.704815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.704815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.704815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.714814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.714814 LLDP, length 82 [|LLDP] 17:37:50.714814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.714815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0533 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.714815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.714815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.714815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.714815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.714815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.714815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.714815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.724815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.724815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.724815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.724815 LLDP, length 82 [|LLDP] 17:37:50.724815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.724816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053a eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.724816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.724816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.724816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.724816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.724816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.724816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.734815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.734815 LLDP, length 82 [|LLDP] 17:37:50.734815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.734815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0542 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.734815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.734815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.734815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.734816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.734816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.734816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.734816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.734816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.734816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.744815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.744816 LLDP, length 82 [|LLDP] 17:37:50.744816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.744816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054a 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.744816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.744816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.744816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.744816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.744816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.744816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.754815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.754815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.754815 LLDP, length 82 [|LLDP] 17:37:50.754815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.754815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0551 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.754815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.754815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.754815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.754815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.754815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.754816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.754816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.754816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.754816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.754816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.764810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.764810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.764810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.764810 LLDP, length 82 [|LLDP] 17:37:50.764810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.764810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0559 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.764810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.764810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.764810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.764810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.764810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.764810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.764811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.774805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.774805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.774805 LLDP, length 82 [|LLDP] 17:37:50.774805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.774805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0561 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.774805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.774805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.774806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.784805 LLDP, length 82 [|LLDP] 17:37:50.784805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.784805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0568 b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.784805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.784805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.784806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.784806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.794802 LLDP, length 82 [|LLDP] 17:37:50.794802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.794802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0570 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.794802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.794803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.794803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.794803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.794803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.794803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.804815 LLDP, length 82 [|LLDP] 17:37:50.804815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.804815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0577 f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.804815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.804815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.804815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.804815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.804815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.804815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.804815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.804816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.804816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.804816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.804816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.804816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.814822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.814822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.814822 LLDP, length 82 [|LLDP] 17:37:50.814822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.814823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057f 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.814823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.814823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.814823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.814823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.814823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.814823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.814823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.824814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.824814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.824814 LLDP, length 82 [|LLDP] 17:37:50.824814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.824814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0587 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.824814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.824814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.824814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.824814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.834818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.834818 LLDP, length 82 [|LLDP] 17:37:50.834818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.834818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 058e d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.834818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.834818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.834818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.834818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.834818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.834818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.834818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.834819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.844811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.844812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.844812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.844812 LLDP, length 82 [|LLDP] 17:37:50.844812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.844812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0596 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.844812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.844812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.844812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.844812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.844812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.844812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.854813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.854813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.854814 LLDP, length 82 [|LLDP] 17:37:50.854814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.854814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 059e 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.854814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.854814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.854814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.854814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.854814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.854814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.854814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.864811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.864811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.864811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.864811 LLDP, length 82 [|LLDP] 17:37:50.864811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.864811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a5 bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.864811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.864811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.864811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.864811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.864811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.864812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.864812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.874804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.874804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.874804 LLDP, length 82 [|LLDP] 17:37:50.874804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.874804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ad 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.874805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.874805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.874805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.874805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.884804 LLDP, length 82 [|LLDP] 17:37:50.884804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.884804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b4 fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.884804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.884804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.884804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.884804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.894804 LLDP, length 82 [|LLDP] 17:37:50.894804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.894804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bc 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.894804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.894804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.894804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.894804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.894804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.894804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.904817 LLDP, length 82 [|LLDP] 17:37:50.904817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.904817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c4 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.904817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.904817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.904817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.904817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.904817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.904818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.904818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.904818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.904818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.904818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.904818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.904818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.914815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.914815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.914815 LLDP, length 82 [|LLDP] 17:37:50.914815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.914816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cb e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.914816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.914816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.914816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.914816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.914816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.914816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.914816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.924814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.924814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.924814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.924814 LLDP, length 82 [|LLDP] 17:37:50.924814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.924815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d3 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.924815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.924815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.924815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.924815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.924815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.924815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.934815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.934815 LLDP, length 82 [|LLDP] 17:37:50.934815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.934815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05db 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.934815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.934815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.934815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.934815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.934815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.934815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.934816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.934816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.934816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.944811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.944811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.944811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.944811 LLDP, length 82 [|LLDP] 17:37:50.944811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.944812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e2 c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.944812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.944812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.944812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.944812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.944812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.944812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.954820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.954820 LLDP, length 82 [|LLDP] 17:37:50.954820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.954820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ea 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.954820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.954820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.954820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.954820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.954820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.954821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.954821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.954821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.954821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.964810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.964810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.964810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.964811 LLDP, length 82 [|LLDP] 17:37:50.964811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.964811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f2 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.964811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.964811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.964811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.964811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.964811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.964811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.964811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.974804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.974804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.974804 LLDP, length 82 [|LLDP] 17:37:50.974804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.974805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f9 a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.974805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.974805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.974805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.974805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.984804 LLDP, length 82 [|LLDP] 17:37:50.984804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.984804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0601 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.984804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.984804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.984804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.984804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.984804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.984804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.994804 LLDP, length 82 [|LLDP] 17:37:50.994804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.994805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0608 e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.994805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.994805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.994805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.994805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.994805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.994805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.004815 LLDP, length 82 [|LLDP] 17:37:51.004815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.004815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0610 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.004815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.004815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.004815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.004815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.004815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.004816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.004816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.004816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.004816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.004816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.004816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.004816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.014816 LLDP, length 82 [|LLDP] 17:37:51.014816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.014816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0618 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.014816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.014816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.014816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.014816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.024814 LLDP, length 82 [|LLDP] 17:37:51.024814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.024814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061f cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.024814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.024814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.024814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.024814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.024814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.024814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.024815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.034810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.034810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.034811 LLDP, length 82 [|LLDP] 17:37:51.034811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.034811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0627 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.034811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.034811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.034811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.034811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.034811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.034811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.034811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.044816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.044816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.044816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.044816 LLDP, length 82 [|LLDP] 17:37:51.044816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.044816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 062f 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.044816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.044816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.044817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.044817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.044817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.044817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.044817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.044817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.044817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.054825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.054825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.054825 LLDP, length 82 [|LLDP] 17:37:51.054825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.054825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0636 b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.054826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.054826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.054826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.054826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.054826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.054826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.054826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.064810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.064810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.064810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.064810 LLDP, length 82 [|LLDP] 17:37:51.064810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.064811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 063e 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.064811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.064811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.064811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.064811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.064811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.064811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.064811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.074805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.074805 LLDP, length 82 [|LLDP] 17:37:51.074805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.074805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0645 f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.074805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.074805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.074805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.084804 LLDP, length 82 [|LLDP] 17:37:51.084804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.084804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064d 941e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.084804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.084804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.084805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.084805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.084805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.084805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.094806 LLDP, length 82 [|LLDP] 17:37:51.094806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.094806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0655 353e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.094806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.094807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.094807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.094807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.094807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.094807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.104816 LLDP, length 82 [|LLDP] 17:37:51.104816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.104817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065c d65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.104817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.104817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.104817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.104817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.104817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.104817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.104817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.104817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.104817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.114812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.114812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.114812 LLDP, length 82 [|LLDP] 17:37:51.114813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.114813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0664 777e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.114813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.114813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.114813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.114813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.114813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.114813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.114813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.124811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.124811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.124811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.124811 LLDP, length 82 [|LLDP] 17:37:51.124811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.124811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066c 189e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.124811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.124811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.124811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.124811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.124811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.124812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.124812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.124812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.124812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.134814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.134815 LLDP, length 82 [|LLDP] 17:37:51.134815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.134815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0673 b9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.134815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.134815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.134815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.134815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.134815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.134815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.144816 LLDP, length 82 [|LLDP] 17:37:51.144816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.144816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067b 5ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.144816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.144816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.144816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.144816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.144816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.144816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.144817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.155691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.155691 LLDP, length 82 [|LLDP] 17:37:51.155691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.155691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0682 fbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.155691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.155691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.155691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.155691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.155691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.155691 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.155692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.155692 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.168559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.168559 LLDP, length 82 [|LLDP] 17:37:51.168560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.168560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068a 9d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.168560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.168560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.168560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.168560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.168560 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.168560 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.168560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.174992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.174992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.174992 LLDP, length 82 [|LLDP] 17:37:51.174992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.174992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0692 3e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.174992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.174992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.174992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.174992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.184810 LLDP, length 82 [|LLDP] 17:37:51.184810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.184810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0699 df5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.184810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.184810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.184810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.184810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.184810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.184810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.194804 LLDP, length 82 [|LLDP] 17:37:51.194804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.194804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a1 807e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.194804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.194804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.194804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.194805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.194805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.194805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.204818 LLDP, length 82 [|LLDP] 17:37:51.204818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.204818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a9 219e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.204818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.204818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.204818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.204818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.204818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.204818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.204818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.204819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.204819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.204819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.204819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.204819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.214811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.214811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.214811 LLDP, length 82 [|LLDP] 17:37:51.214811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.214811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b0 c2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.214811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.214811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.214812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.214812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.214812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.214812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.214812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.214812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.214812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.214812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.224812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.224812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.224812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.224812 LLDP, length 82 [|LLDP] 17:37:51.224812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.224812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b8 63de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.224813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.224813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.224813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.224813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.224813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.224813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.234811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.234811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.234811 LLDP, length 82 [|LLDP] 17:37:51.234811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.234811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c0 04fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.234812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.234812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.234812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.234812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.234812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.234812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.234812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.244809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.244809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.244809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.244809 LLDP, length 82 [|LLDP] 17:37:51.244809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.244809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c7 a61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.244809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.244810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.244810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.244810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.244810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.244810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.254816 LLDP, length 82 [|LLDP] 17:37:51.254816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.254816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06cf 473e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.254816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.264810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.264810 LLDP, length 82 [|LLDP] 17:37:51.264810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.264810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d6 e85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.264810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.264810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.264811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.274806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.274806 LLDP, length 82 [|LLDP] 17:37:51.274806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.274806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06de 897e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.274806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.274806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.274806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.284805 LLDP, length 82 [|LLDP] 17:37:51.284805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.284805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e6 2a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.284805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.284805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.284805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.284806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.294804 LLDP, length 82 [|LLDP] 17:37:51.294804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.294804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ed cbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.294804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.294804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.294804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.294804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.294804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.294804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.304815 LLDP, length 82 [|LLDP] 17:37:51.304815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.304815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f5 6cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.304816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.304816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.304816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.304816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.304816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.304816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.304816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.304816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.304816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.314816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.314816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.314816 LLDP, length 82 [|LLDP] 17:37:51.314816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.314816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06fd 0dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.314816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.314816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.314816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.314817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.314817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.314817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.314817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.314817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.314817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.314817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.324810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.324810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.324810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.324810 LLDP, length 82 [|LLDP] 17:37:51.324810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.324810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0704 af1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.324810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.324810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.324811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.324811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.324811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.324811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.324811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.324811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.324811 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.334810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.334810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.334810 LLDP, length 82 [|LLDP] 17:37:51.334810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.334816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070c 503e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.334817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.334817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.334817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.334817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.334817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.334817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.334817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.344809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.344809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.344809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.344809 LLDP, length 82 [|LLDP] 17:37:51.344809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.344809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0713 f15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.344809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.344809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.344809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.344809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.344809 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.344809 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.344810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.344810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.344810 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.354813 LLDP, length 82 [|LLDP] 17:37:51.354813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.354813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071b 927e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.354813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.354813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.354813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.354813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.364808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.364809 LLDP, length 82 [|LLDP] 17:37:51.364809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.364809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0723 339e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.364809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.364809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.364809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.364809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.364809 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.364809 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.364809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.374803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.374804 LLDP, length 82 [|LLDP] 17:37:51.374804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.374804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072a d4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.384808 LLDP, length 82 [|LLDP] 17:37:51.384808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.384808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0732 75de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.384808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.384808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.384808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.384808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.384808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.384808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.394803 LLDP, length 82 [|LLDP] 17:37:51.394803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.394803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073a 16fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.394803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.394803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.394803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.394803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.394803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.394803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.404813 LLDP, length 82 [|LLDP] 17:37:51.404813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.404813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0741 b81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.404813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.404813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.404813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.404813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.404813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.404813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.404813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.404813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.404813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.404814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.404814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.404814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.414817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.414817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.414817 LLDP, length 82 [|LLDP] 17:37:51.414817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.414817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0749 593e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.414817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.414817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.414818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.414818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.414818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.414818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.414818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.414818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.414818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.414818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.424812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.424812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.424812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.424812 LLDP, length 82 [|LLDP] 17:37:51.424812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.424812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0750 fa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.424813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.424813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.424813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.424813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.424813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.424813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.434817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.434817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.434817 LLDP, length 82 [|LLDP] 17:37:51.434817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.434817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0758 9b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.434818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.434818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.434818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.434818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.434818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.434818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.434818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.444831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.444831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.444831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.444831 LLDP, length 82 [|LLDP] 17:37:51.444831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.444831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0760 3c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.444831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.444831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.444832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.444832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.444832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.444832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.444832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.444832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.444832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.454820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.454820 LLDP, length 82 [|LLDP] 17:37:51.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0767 ddbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.454820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.454820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.454821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.464815 LLDP, length 82 [|LLDP] 17:37:51.464815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.464815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076f 7ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.464816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.464816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.464816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.464816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.474809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.474809 LLDP, length 82 [|LLDP] 17:37:51.474809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.474809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0777 1ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.474809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.474809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.474809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.484809 LLDP, length 82 [|LLDP] 17:37:51.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 077e c11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.484810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.484810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.484810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.494810 LLDP, length 82 [|LLDP] 17:37:51.494810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.494810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0786 623e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.494811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.494811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.494811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.494811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.494811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.494811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.504822 LLDP, length 82 [|LLDP] 17:37:51.504822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.504822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 078e 035e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.504822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.504822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.504822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.504823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.504823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.504823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.504823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.504823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.504823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.504823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.514821 LLDP, length 82 [|LLDP] 17:37:51.514821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.514821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0795 a47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.514821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.514821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.514821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.514821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.514821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.514822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.514822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.524818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.524818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.524818 LLDP, length 82 [|LLDP] 17:37:51.524818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.524818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079d 459e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.524818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.524818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.524818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.524818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.524818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.524819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.524819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.534813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.534813 LLDP, length 82 [|LLDP] 17:37:51.534813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.534813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a4 e6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.534813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.534813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.534813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.534814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.534814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.534814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.534814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.534814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.534814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.544816 LLDP, length 82 [|LLDP] 17:37:51.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ac 87de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.544816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.544816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.544816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.544817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.544817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.554816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.554816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.554816 LLDP, length 82 [|LLDP] 17:37:51.554816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.554816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b4 28fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.554816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.554817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.554817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.554817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.554817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.554817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.554817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.564812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.564812 LLDP, length 82 [|LLDP] 17:37:51.564812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.564812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bb ca1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.564812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.564812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.564812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.564813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.564813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.564813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.564813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.574806 LLDP, length 82 [|LLDP] 17:37:51.574806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.574806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c3 6b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.574806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.584806 LLDP, length 82 [|LLDP] 17:37:51.584807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.584807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cb 0c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.584807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.584807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.584807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.584807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.594807 LLDP, length 82 [|LLDP] 17:37:51.594807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.594807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d2 ad7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.594807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.594807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.594808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.594808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.604819 LLDP, length 82 [|LLDP] 17:37:51.604819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.604819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07da 4e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.604819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.604819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.604819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.604819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.604819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.604819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.604819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.604819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.604819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.604820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.604820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.604820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.614815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.614816 LLDP, length 82 [|LLDP] 17:37:51.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e1 efbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.614816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.624826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.624826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.624826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.624826 LLDP, length 82 [|LLDP] 17:37:51.624826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.624826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e9 90de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.624826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.624826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.624826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.624826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.624826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.624827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.624827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.624827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.624827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.634814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.634814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.634814 LLDP, length 82 [|LLDP] 17:37:51.634814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.634814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f1 31fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.634814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.634814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.634814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.634815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.634815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.634815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.634815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.634815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.634815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.634815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.644811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.644811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.644811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.644811 LLDP, length 82 [|LLDP] 17:37:51.644811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.644811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f8 d31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.644811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.644811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.644811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.644811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.644811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.644811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.644812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.644812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.644812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.654820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.654821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.654821 LLDP, length 82 [|LLDP] 17:37:51.654821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.654821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0800 743e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.654821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.654821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.654821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.654821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.654821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.654821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.654821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.654821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.654821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.654822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.664812 LLDP, length 82 [|LLDP] 17:37:51.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.664812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0808 155e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.664812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.664812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.664812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.664812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.664812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.664812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.674808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.674808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.674808 LLDP, length 82 [|LLDP] 17:37:51.674808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.674808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080f b67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.674808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.674808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.674808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.674808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.684809 LLDP, length 82 [|LLDP] 17:37:51.684809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.684809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0817 579e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.684809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.684809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.684809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.684809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.684809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.684809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.694807 LLDP, length 82 [|LLDP] 17:37:51.694807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.694807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 081e f8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.694807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.694807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.694807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.704820 LLDP, length 82 [|LLDP] 17:37:51.704820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.704820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0826 99de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.704820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.704820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.704820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.704821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.704821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.704821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.704821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.704821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.704821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.704821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.714817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.714818 LLDP, length 82 [|LLDP] 17:37:51.714818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.714818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 082e 3afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.714818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.714818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.714818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.714818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.714818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.714818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.724816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.724816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.724816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.724816 LLDP, length 82 [|LLDP] 17:37:51.724816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.724816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0835 dc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.724816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.724817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.724817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.724817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.724817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.724817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.734814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.734814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.734814 LLDP, length 82 [|LLDP] 17:37:51.734814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.734814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083d 7d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.734815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.734815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.734815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.734815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.734815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.734815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.744815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.744815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.744815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.744815 LLDP, length 82 [|LLDP] 17:37:51.744815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.744816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0845 1e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.744816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.744816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.744816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.744816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.744816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.744816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.754816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.754816 LLDP, length 82 [|LLDP] 17:37:51.754816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.754816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084c bf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.754816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.754816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.754816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.754816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.754816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.754816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.754817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.754817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.764811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.764811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.764811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.764811 LLDP, length 82 [|LLDP] 17:37:51.764812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.764812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0854 609e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.764812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.764812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.764812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.764812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.764812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.764812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.764812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.774808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.774808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.774808 LLDP, length 82 [|LLDP] 17:37:51.774808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.774808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085c 01be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.774808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.774808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.774808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.774808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.784806 LLDP, length 82 [|LLDP] 17:37:51.784807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.784807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0863 a2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.784807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.784807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.784807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.784807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.784807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.784807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.794805 LLDP, length 82 [|LLDP] 17:37:51.794805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.794805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086b 43fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.794805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.794805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.794805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.794806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.794806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.794806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.804823 LLDP, length 82 [|LLDP] 17:37:51.804823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.804823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0872 e51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.804823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.804823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.804823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.804824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.804824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.804824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.804824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.804824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.804824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.804824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.804824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.804824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.814826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.814826 LLDP, length 82 [|LLDP] 17:37:51.814826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.814826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087a 863e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.814826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.814826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.814826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.814826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.814826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.814826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.814826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.814827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.824818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.824819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.824819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.824819 LLDP, length 82 [|LLDP] 17:37:51.824819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.824819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0882 275e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.824819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.824819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.824819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.824819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.824819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.824819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.834854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.834854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.834854 LLDP, length 82 [|LLDP] 17:37:51.834854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.834854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0889 c87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.834854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.834854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.834854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.834854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.834855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.834855 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.834855 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.834855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.834855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.834855 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.844855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.844855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.844855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.844855 LLDP, length 82 [|LLDP] 17:37:51.844855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.844855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0891 699e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.844856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.844856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.844856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.844856 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.844856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.844856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.854841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.854841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.854841 LLDP, length 82 [|LLDP] 17:37:51.854841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.854842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0899 0abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.854842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.854842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.854842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.854842 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.854842 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.854842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.854842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.864835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.864835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.864835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.864835 LLDP, length 82 [|LLDP] 17:37:51.864836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.864836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a0 abde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.864836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.864836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.864836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.864836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.864836 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.864836 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.864836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.874835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.874835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.874835 LLDP, length 82 [|LLDP] 17:37:51.874835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.874835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a8 4cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.874836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.874836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.874836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.874836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.884833 LLDP, length 82 [|LLDP] 17:37:51.884833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.884833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08af ee1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.884833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.884833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.884833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.884833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.884833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.884833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.894833 LLDP, length 82 [|LLDP] 17:37:51.894833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.894833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b7 8f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.894833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.894833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.894833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.894833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.894834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.894834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.904833 LLDP, length 82 [|LLDP] 17:37:51.904833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.904833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08bf 305e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.904833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.904833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.904833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.904833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.904833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.904833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.904833 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.904833 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.904833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.904834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.904834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.904834 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.909148 LLDP, length 219: localhost 17:37:51.914817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.914817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.914817 LLDP, length 82 [|LLDP] 17:37:51.914817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.914817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c6 d17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.914817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.914817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.914817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.914817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.914818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.914818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.914818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.914818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.914818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.914818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.924824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.924825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.924825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.924825 LLDP, length 82 [|LLDP] 17:37:51.924825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.924825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ce 729e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.924825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.924825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.924825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.924825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.924825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.924825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.934822 LLDP, length 82 [|LLDP] 17:37:51.934822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.934822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d6 13be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.934822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.934822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.934822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.934822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.934822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.934822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.934823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.944817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.944817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.944817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.944817 LLDP, length 82 [|LLDP] 17:37:51.944818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.944818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08dd b4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.944818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.944818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.944818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.944818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.944818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.944818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.954815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.954816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.954816 LLDP, length 82 [|LLDP] 17:37:51.954816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.954816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e5 55fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.954816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.954816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.954816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.954816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.954816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.954816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.954816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.964816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.964816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.964816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.964816 LLDP, length 82 [|LLDP] 17:37:51.964816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.964816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ec f71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.964816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.964816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.964817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.964817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.964817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.964817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.964817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.974808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.974808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.974808 LLDP, length 82 [|LLDP] 17:37:51.974808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.974808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f4 983e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.974808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.974808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.974808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.974808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.984808 LLDP, length 82 [|LLDP] 17:37:51.984809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.984809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fc 395e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.984809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.984809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.984809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.984809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.984809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.984809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.994805 LLDP, length 82 [|LLDP] 17:37:51.994805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.994806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0903 da7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.994806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.994806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.994806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.994806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.994806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.994806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.004824 LLDP, length 82 [|LLDP] 17:37:52.004824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.004824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090b 7b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.004824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.004824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.004825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.004825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.004825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.004825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.004825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.004825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.004825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.004825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.004825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.004825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.014822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.014822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.014822 LLDP, length 82 [|LLDP] 17:37:52.014822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.014822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0913 1cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.014822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.014822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.014823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.014823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.014823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.014823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.014823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.014823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.014823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.014823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.024814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.024814 LLDP, length 82 [|LLDP] 17:37:52.024814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.024815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091a bdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.024815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.024815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.024815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.024815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.024815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.024815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.034814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.034814 LLDP, length 82 [|LLDP] 17:37:52.034814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.034814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0922 5efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.034814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.034814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.034814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.034815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.034815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.034815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.034815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.034815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.034815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.044831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.044831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.044831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.044831 LLDP, length 82 [|LLDP] 17:37:52.044832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.044832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092a 001e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.044832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.044832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.044832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.044832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.044832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.044832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.054829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.054829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.054829 LLDP, length 82 [|LLDP] 17:37:52.054829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.054829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0931 a13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.054829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.054829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.054829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.054829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.054829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.054829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.054829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.054830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.054830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.054830 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.064819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.064819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.064819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.064819 LLDP, length 82 [|LLDP] 17:37:52.064819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.064820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0939 425e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.064820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.064820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.064820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.064820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.064820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.064820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.064820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.074805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.074805 LLDP, length 82 [|LLDP] 17:37:52.074805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.074806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0940 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.074806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.074806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.074806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.074806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.085078 LLDP, length 82 [|LLDP] 17:37:52.085078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.085078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0948 849e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.085078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.085078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.085078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.085078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.085078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.085078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.094808 LLDP, length 82 [|LLDP] 17:37:52.094808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.094808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0950 25be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.094809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.094809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.094809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.094809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.094809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.094809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.104826 LLDP, length 82 [|LLDP] 17:37:52.104826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.104826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0957 c6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.104826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.104826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.104826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.104826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.104826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.104826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.104826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.104826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.104826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.104827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.104827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.104827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.114818 LLDP, length 82 [|LLDP] 17:37:52.114818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.114818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095f 67fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.114818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.114818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.114818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.114818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.114818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.114818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.124817 LLDP, length 82 [|LLDP] 17:37:52.124817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.124817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0967 091e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.124817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.124817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.124817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.124817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.134812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.134812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.134812 LLDP, length 82 [|LLDP] 17:37:52.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.134813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 096e aa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.134813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.134813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.134813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.134813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.134813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.134813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.134813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.144856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.144856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.144856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.144856 LLDP, length 82 [|LLDP] 17:37:52.144856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.144856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0976 4b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.144856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.144856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.144856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.144856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.144857 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.144857 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.144857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.144857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.144857 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.154845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.154845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.154846 LLDP, length 82 [|LLDP] 17:37:52.154846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.154846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097d ec7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.154846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.154846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.154846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.154846 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.154846 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.154846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.154846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.164825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.164826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.164826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.164826 LLDP, length 82 [|LLDP] 17:37:52.164826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.164826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0985 8d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.164826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.164826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.164826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.164826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.164826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.164826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.164826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.174810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.174811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.174811 LLDP, length 82 [|LLDP] 17:37:52.174811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.174811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098d 2ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.174811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.174811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.174811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.174811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.184808 LLDP, length 82 [|LLDP] 17:37:52.184808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.184808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0994 cfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.184808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.184808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.184808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.184808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.194812 LLDP, length 82 [|LLDP] 17:37:52.194812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.194812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099c 70fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.194812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.194812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.194812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.194812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.194812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.194812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.204822 LLDP, length 82 [|LLDP] 17:37:52.204822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.204822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a4 121e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.204822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.204822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.204822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.204822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.204822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.204823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.204823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.204823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.204823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.204823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.204823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.204823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.214825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.214825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.214825 LLDP, length 82 [|LLDP] 17:37:52.214825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.214825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ab b33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.214825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.214825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.214825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.214825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.214825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.214826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.214826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.214826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.214826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.214826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.224817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.224817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.224817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.224817 LLDP, length 82 [|LLDP] 17:37:52.224817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.224817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b3 545e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.224817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.224817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.224817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.224818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.224818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.224818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.224818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.224818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.224818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.234814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.234814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.234814 LLDP, length 82 [|LLDP] 17:37:52.234814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.234815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ba f57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.234815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.234815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.234815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.234815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.234815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.234815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.234815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.244815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.244815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.244815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.244815 LLDP, length 82 [|LLDP] 17:37:52.244815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.244815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c2 969e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.244815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.244815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.244816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.244816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.244816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.244816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.244816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.244816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.244816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.254815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.254815 LLDP, length 82 [|LLDP] 17:37:52.254815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.254815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ca 37be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.254815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.254815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.254815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.254816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.264809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.264809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.264809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.264809 LLDP, length 82 [|LLDP] 17:37:52.264809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.264809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d1 d8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.264809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.264809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.264810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.274802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.274802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.274802 LLDP, length 82 [|LLDP] 17:37:52.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d9 79fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.274803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.274803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.284802 LLDP, length 82 [|LLDP] 17:37:52.284802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.284802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e1 1b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.284802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.284802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.284802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.284802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.284802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.284802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.294808 LLDP, length 82 [|LLDP] 17:37:52.294808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.294808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e8 bc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.294808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.294808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.294809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.294809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.294809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.294809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.304826 LLDP, length 82 [|LLDP] 17:37:52.304826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.304826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f0 5d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.304826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.304826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.304826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.304826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.304826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.304826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.304827 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.304827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.304827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.304827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.304827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.304827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.314829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.314829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.314829 LLDP, length 82 [|LLDP] 17:37:52.314829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.314829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f7 fe7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.314829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.314829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.314829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.314829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.314829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.314829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.314829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.314830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.314830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.314830 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.324816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.324816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.324816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.324816 LLDP, length 82 [|LLDP] 17:37:52.324816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.324816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ff 9f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.324816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.324816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.324816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.324816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.324817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.324817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.324817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.324817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.324817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.334819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.334819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.334819 LLDP, length 82 [|LLDP] 17:37:52.334819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.334819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a07 40be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.334819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.334819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.334819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.334819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.334819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.334819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.334819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.334820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.334820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.334820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.344822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.344822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.344822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.344823 LLDP, length 82 [|LLDP] 17:37:52.344823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.344823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a0e e1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.344823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.344823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.344823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.344823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.344823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.344823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.354815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.354815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.354815 LLDP, length 82 [|LLDP] 17:37:52.354815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.354815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a16 82fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.354815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.354815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.354815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.354815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.354815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.354815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.354816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.354816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.354816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.354816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.364811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.364811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.364811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.364811 LLDP, length 82 [|LLDP] 17:37:52.364811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.364811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a1e 241e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.364811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.364811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.364811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.364811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.364812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.364812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.364812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.374803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.374803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.374803 LLDP, length 82 [|LLDP] 17:37:52.374803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.374803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a25 c53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.384802 LLDP, length 82 [|LLDP] 17:37:52.384803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.384803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2d 665e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.384803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.384803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.384803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.384803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.384803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.384803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.394806 LLDP, length 82 [|LLDP] 17:37:52.394806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.394806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a35 077e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.394807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.394807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.394807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.394807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.394807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.394807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.404818 LLDP, length 82 [|LLDP] 17:37:52.404818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.404818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3c a89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.404818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.404819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.404819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.404819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.404819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.404819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.404819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.404819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.404819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.404820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.404820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.404820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.414815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.414815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.414815 LLDP, length 82 [|LLDP] 17:37:52.414816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.414816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a44 49be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.414816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.414816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.414816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.414816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.414816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.414816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.414816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.424832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.424832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.424832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.424832 LLDP, length 82 [|LLDP] 17:37:52.424832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.424832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4b eade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.424832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.424832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.424832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.424832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.424832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.424832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.424833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.424833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.424833 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.434823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.434823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.434824 LLDP, length 82 [|LLDP] 17:37:52.434824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.434824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a53 8bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.434824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.434824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.434824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.434824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.434824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.434824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.434824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.444824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.444824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.444824 LLDP, length 82 [|LLDP] 17:37:52.444824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.444824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5b 2d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.444824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.444824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.444824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.444824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.444824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.444824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.444825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.454823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.454823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.454823 LLDP, length 82 [|LLDP] 17:37:52.454823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.454823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a62 ce3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.454823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.454823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.454823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.454823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.454823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.454823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.454824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.454824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.454824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.454824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.464815 LLDP, length 82 [|LLDP] 17:37:52.464816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.464816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6a 6f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.464816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.464816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.464816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.464816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.474809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.474809 LLDP, length 82 [|LLDP] 17:37:52.474809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.474809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a72 107e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.474809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.474809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.474809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.484808 LLDP, length 82 [|LLDP] 17:37:52.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a79 b19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.484809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.484809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.494832 LLDP, length 82 [|LLDP] 17:37:52.494832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.494832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a81 52be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.494832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.494832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.494832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.494832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.494832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.494832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.504819 LLDP, length 82 [|LLDP] 17:37:52.504819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.504819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a88 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.504819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.504819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.504819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.504819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.504820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.504820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.504820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.504820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.504820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.504820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.504820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.504820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.514816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.514816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.514817 LLDP, length 82 [|LLDP] 17:37:52.514817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.514817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a90 94fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.514817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.514817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.514817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.514817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.514817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.514817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.514817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.524816 LLDP, length 82 [|LLDP] 17:37:52.524816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.524816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a98 361e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.524816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.524816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.524816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.524816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.524816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.524816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.524817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.534825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.534825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.534825 LLDP, length 82 [|LLDP] 17:37:52.534825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.534825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9f d73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.534825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.534826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.534826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.534826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.534826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.534826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.534826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.544816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.544816 LLDP, length 82 [|LLDP] 17:37:52.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa7 785e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.544817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.544817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.544817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.544817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.544817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.544817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.544817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.554818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.554818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.554818 LLDP, length 82 [|LLDP] 17:37:52.554818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.554818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aaf 197e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.554818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.554818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.554818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.554818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.554818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.554818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.554818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.554819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.554819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.554819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.564814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.564814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.564814 LLDP, length 82 [|LLDP] 17:37:52.564814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.564814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab6 ba9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.564814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.564814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.564814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.564814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.564814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.574805 LLDP, length 82 [|LLDP] 17:37:52.574805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.574805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0abe 5bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.574805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.584806 LLDP, length 82 [|LLDP] 17:37:52.584806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.584806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac5 fcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.584806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.584806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.584806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.584806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.584806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.584806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.594807 LLDP, length 82 [|LLDP] 17:37:52.594807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.594807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acd 9dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.594807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.594807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.594808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.594808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.604816 LLDP, length 82 [|LLDP] 17:37:52.604816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.604816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad5 3f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.604816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.604816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.604816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.604816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.604817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.604817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.604817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.604817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.604817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.604817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.604817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.604817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.614816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.614816 LLDP, length 82 [|LLDP] 17:37:52.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adc e03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.614817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.614817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.614817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.614817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.614817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.614817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.624813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.624814 LLDP, length 82 [|LLDP] 17:37:52.624814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.624814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae4 815e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.624814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.624814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.624814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.624814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.624814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.624814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.634813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.634813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.634813 LLDP, length 82 [|LLDP] 17:37:52.634813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.634813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aec 227e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.634813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.634813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.634813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.634813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.634813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.634813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.634814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.634814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.634814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.634814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.644814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.644814 LLDP, length 82 [|LLDP] 17:37:52.644814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.644814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af3 c39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.644814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.644815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.644815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.644815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.644815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.644815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.654819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.654820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.654820 LLDP, length 82 [|LLDP] 17:37:52.654820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.654820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afb 64be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.654820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.654820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.654820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.654820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.654820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.654820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.654820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.664813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.664813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.664813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.664813 LLDP, length 82 [|LLDP] 17:37:52.664813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.664813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b03 05de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.664813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.664813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.664813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.664813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.664814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.674806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.674806 LLDP, length 82 [|LLDP] 17:37:52.674806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.674806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0a a6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.674806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.674806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.674806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.684804 LLDP, length 82 [|LLDP] 17:37:52.684804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.684804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b12 481e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.684805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.684805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.684805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.684805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.684805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.684805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.694806 LLDP, length 82 [|LLDP] 17:37:52.694806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.694806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b19 e93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.694806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.694807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.694807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.704818 LLDP, length 82 [|LLDP] 17:37:52.704818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.704818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b21 8a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.704818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.704818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.704818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.704818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.704818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.704819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.704819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.704819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.704819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.704819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.704819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.704819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.714814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.714814 LLDP, length 82 [|LLDP] 17:37:52.714814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.714814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b29 2b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.714814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.714814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.714814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.714815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.714815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.714815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.714815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.714815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.714815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.724818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.724818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.724818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.724818 LLDP, length 82 [|LLDP] 17:37:52.724818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.724818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b30 cc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.724818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.724818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.724818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.724818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.724819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.724819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.724819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.724819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.724819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.734817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.734817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.734817 LLDP, length 82 [|LLDP] 17:37:52.734817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.734817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b38 6dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.734817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.734817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.734817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.734817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.734817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.734817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.734817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.734818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.734818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.734818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.744814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.744814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.744814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.744814 LLDP, length 82 [|LLDP] 17:37:52.744815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.744815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b40 0ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.744815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.744815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.744815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.744815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.744815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.744815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.754814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.754814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.754814 LLDP, length 82 [|LLDP] 17:37:52.754814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.754814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b47 affe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.754814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.754814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.754814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.754814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.754814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.754814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.754814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.754815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.754815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.754815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.764812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.764812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.764812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.764812 LLDP, length 82 [|LLDP] 17:37:52.764812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.764812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b4f 511e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.764812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.764813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.764813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.764813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.764813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.764813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.764813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.774804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.774804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.774804 LLDP, length 82 [|LLDP] 17:37:52.774804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.774805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b56 f23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.774805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.774805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.774805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.774805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.784805 LLDP, length 82 [|LLDP] 17:37:52.784805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.784805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b5e 935e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.784805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.784805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.784805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.784805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.794823 LLDP, length 82 [|LLDP] 17:37:52.794823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.794823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b66 347e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.794823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.794823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.794823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.794823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.794823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.794823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.804816 LLDP, length 82 [|LLDP] 17:37:52.804816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.804816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6d d59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.804817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.804817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.804817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.804817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.804817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.804817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.804817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.804817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.804817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.814817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.814817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.814817 LLDP, length 82 [|LLDP] 17:37:52.814817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.814817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b75 76be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.814817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.814817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.814817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.814817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.814817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.814817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.814817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.814818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.814818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.814818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.824817 LLDP, length 82 [|LLDP] 17:37:52.824817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.824817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7d 17de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.824817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.824817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.824817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.824817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.824817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.824818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.824818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.834812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.834812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.834812 LLDP, length 82 [|LLDP] 17:37:52.834812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.834812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b84 b8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.834812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.834812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.834812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.834812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.834812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.834813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.834813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.834813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.834813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.834813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.844814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.844814 LLDP, length 82 [|LLDP] 17:37:52.844814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.844815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8c 5a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.844815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.844815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.844815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.844815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.844815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.844815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.854822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.854822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.854822 LLDP, length 82 [|LLDP] 17:37:52.854822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.854822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b93 fb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.854822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.854822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.854822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.854822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.854822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.854822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.854822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.854823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.854823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.854823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.864814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.864814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.864814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.864814 LLDP, length 82 [|LLDP] 17:37:52.864814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.864814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9b 9c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.864814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.864814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.864814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.864814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.864814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.864814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.864815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.874808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.874808 LLDP, length 82 [|LLDP] 17:37:52.874808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.874808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba3 3d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.874808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.874808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.874808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.884807 LLDP, length 82 [|LLDP] 17:37:52.884807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.884807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0baa de9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.884808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.884808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.884808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.884808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.884808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.884808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.894808 LLDP, length 82 [|LLDP] 17:37:52.894809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.894809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb2 7fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.894809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.894809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.894809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.894809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.894809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.894809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.904846 LLDP, length 82 [|LLDP] 17:37:52.904846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.904846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bba 20de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.904846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.904846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.904846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.904846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.904846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.904846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.904846 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.904846 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.904846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.904846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.904847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.904847 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.914846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.914846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.914846 LLDP, length 82 [|LLDP] 17:37:52.914846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.914846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc1 c1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.914846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.914846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.914847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.914847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.914847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.914847 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.914847 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.914847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.914847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.914847 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.924819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.924819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.924819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.924819 LLDP, length 82 [|LLDP] 17:37:52.924819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.924819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc9 631e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.924819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.924820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.924820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.924820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.924820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.924820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.934822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.934822 LLDP, length 82 [|LLDP] 17:37:52.934822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.934822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd1 043e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.934822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.934822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.934822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.934823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.934823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.934823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.934823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.934823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.934823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.934823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.944824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.944824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.944824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.944824 LLDP, length 82 [|LLDP] 17:37:52.944824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.944824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd8 a55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.944824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.944824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.944824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.944825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.944825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.944825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.944825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.944825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.944825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.954819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.954819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.954819 LLDP, length 82 [|LLDP] 17:37:52.954819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.954819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be0 467e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.954819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.954819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.954819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.954819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.954819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.954819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.954819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.954820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.954820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.954820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.964815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.964815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.964815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.964816 LLDP, length 82 [|LLDP] 17:37:52.964816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.964816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be7 e79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.964816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.964816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.964816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.964816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.964816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.964816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.964816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.974812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.974812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.974812 LLDP, length 82 [|LLDP] 17:37:52.974813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.974813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bef 88be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.974813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.974813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.974813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.974813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.984807 LLDP, length 82 [|LLDP] 17:37:52.984807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.984807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf7 29de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.984807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.984807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.984807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.984807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.984807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.984807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.994808 LLDP, length 82 [|LLDP] 17:37:52.994808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.994808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bfe cafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.994808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.994808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.994808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.994808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.994808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.994808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.004817 LLDP, length 82 [|LLDP] 17:37:53.004817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.004817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c06 6c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.004817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.004818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.004818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.004818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.004818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.004818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.004818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.014823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.014823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.014823 LLDP, length 82 [|LLDP] 17:37:53.014823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.014823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c0e 0d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.014823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.014823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.014824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.014824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.014824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.014824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.014824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.014824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.014824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.014824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.024816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.024817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.024817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.024817 LLDP, length 82 [|LLDP] 17:37:53.024817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.024817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c15 ae5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.024817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.024817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.024817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.024817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.024817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.024817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.034814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.034814 LLDP, length 82 [|LLDP] 17:37:53.034814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.034814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1d 4f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.034815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.034815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.034815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.034815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.034815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.034815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.034815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.044814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.044815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.044815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.044815 LLDP, length 82 [|LLDP] 17:37:53.044815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.044815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c24 f09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.044815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.044815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.044815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.044815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.044815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.044815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.054815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.054815 LLDP, length 82 [|LLDP] 17:37:53.054815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.054815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2c 91be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.054815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.054815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.054816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.054816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.054816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.054816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.054816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.054816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.054816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.054816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.064813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.064813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.064813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.064813 LLDP, length 82 [|LLDP] 17:37:53.064813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.064813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c34 32de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.064813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.064813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.064814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.064814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.064814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.064814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.064814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.074865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.074865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.074865 LLDP, length 82 [|LLDP] 17:37:53.074866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.074866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.074866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.074866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.074866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.074866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.084808 LLDP, length 82 [|LLDP] 17:37:53.084808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.084808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c43 751e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.084808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.084808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.084808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.084808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.084808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.084808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.094807 LLDP, length 82 [|LLDP] 17:37:53.094807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.094807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4b 163e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.094807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.094807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.094807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.094808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.094808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.094808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.104820 LLDP, length 82 [|LLDP] 17:37:53.104820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.104820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c52 b75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.104820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.104820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.104821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.104821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.104821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.104821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.104821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.104821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.104821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.104821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.104821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.104821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.114817 LLDP, length 82 [|LLDP] 17:37:53.114817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.114817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5a 587e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.114817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.114817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.114817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.114817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.114817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.114817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.114818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.124816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.124816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.124816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.124816 LLDP, length 82 [|LLDP] 17:37:53.124816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.124816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c61 f99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.124817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.124817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.124817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.124817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.124817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.124817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.134815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.134815 LLDP, length 82 [|LLDP] 17:37:53.134815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.134815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c69 9abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.134815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.134815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.134815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.134815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.134815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.134816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.134816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.134816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.144814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.144814 LLDP, length 82 [|LLDP] 17:37:53.144814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.144814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c71 3bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.144814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.144814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.144814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.144814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.144814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.144815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.144815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.144815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.144815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.154828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.154828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.154828 LLDP, length 82 [|LLDP] 17:37:53.154828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.154828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c78 dcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.154828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.154828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.154829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.154829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.154829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.154829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.154829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.154829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.154829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.154829 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.164816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.164816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.164817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.164817 LLDP, length 82 [|LLDP] 17:37:53.164817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.164817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c80 7e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.164817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.164817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.164817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.164817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.164817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.164817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.164817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.174809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.174809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.174809 LLDP, length 82 [|LLDP] 17:37:53.174809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.174809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c88 1f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.174809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.174809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.174809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.174809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.184808 LLDP, length 82 [|LLDP] 17:37:53.184808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.184808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8f c05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.184808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.184808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.184809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.184809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.184809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.194807 LLDP, length 82 [|LLDP] 17:37:53.194807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.194807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c97 617e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.194807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.194807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.194807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.194807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.194807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.194807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.204820 LLDP, length 82 [|LLDP] 17:37:53.204820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.204820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c9f 029e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.204821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.204821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.204821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.204821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.204821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.204821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.204821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.204821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.204821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.214817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.214817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.214817 LLDP, length 82 [|LLDP] 17:37:53.214817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.214817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca6 a3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.214817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.214818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.214818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.214818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.214818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.214818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.214818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.224814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.224814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.224814 LLDP, length 82 [|LLDP] 17:37:53.224814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.224814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cae 44de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.224814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.224814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.224814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.224814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.224814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.224814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.224815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.234819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.234819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.234819 LLDP, length 82 [|LLDP] 17:37:53.234819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.234819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb5 e5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.234819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.234819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.234819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.234819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.234819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.234819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.234819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.234820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.234820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.234820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.244816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.244816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.244816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.244816 LLDP, length 82 [|LLDP] 17:37:53.244816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.244816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbd 871e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.244816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.244817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.244817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.244817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.244817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.244817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.254816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.254816 LLDP, length 82 [|LLDP] 17:37:53.254816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.254816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc5 283e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.254816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.254816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.254816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.254817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.254817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.254817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.254817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.264812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.264812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.264812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.264812 LLDP, length 82 [|LLDP] 17:37:53.264812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.264812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccc c95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.264812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.264812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.264812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.264812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.264812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.264812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.264813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.274803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.274803 LLDP, length 82 [|LLDP] 17:37:53.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd4 6a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.274804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.274804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.274804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.284807 LLDP, length 82 [|LLDP] 17:37:53.284807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.284807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cdc 0b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.284807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.284807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.284807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.284808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.284808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.284808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.294813 LLDP, length 82 [|LLDP] 17:37:53.294813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.294813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce3 acbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.294813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.294813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.294813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.294813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.294813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.294813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.304837 LLDP, length 82 [|LLDP] 17:37:53.304837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.304837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ceb 4dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.304837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.304837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.304838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.304838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.304838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.304838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.304838 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.304838 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.304838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.304838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.304838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.304838 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.314823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.314823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.314823 LLDP, length 82 [|LLDP] 17:37:53.314823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.314824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf2 eefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.314824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.314824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.314824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.314824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.314824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.314824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.314824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.324819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.324819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.324819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.324819 LLDP, length 82 [|LLDP] 17:37:53.324819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.324819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfa 901e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.324819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.324820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.324820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.324820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.324820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.324820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.334813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.334813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.334813 LLDP, length 82 [|LLDP] 17:37:53.334813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.334813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d02 313e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.334813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.334813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.334813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.334813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.334813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.334814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.334814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.334814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.334814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.334814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.344818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.344818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.344818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.344818 LLDP, length 82 [|LLDP] 17:37:53.344818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.344818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d09 d25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.344818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.344818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.344818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.344818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.344818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.344818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.344819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.344819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.344819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.354814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.354814 LLDP, length 82 [|LLDP] 17:37:53.354814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.354814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d11 737e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.354814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.354814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.354814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.354814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.354814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.354815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.354815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.354815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.354815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.364813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.364813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.364813 LLDP, length 82 [|LLDP] 17:37:53.364813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.364813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d19 149e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.364813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.364813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.364813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.364813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.364813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.374804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.374804 LLDP, length 82 [|LLDP] 17:37:53.374804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.374804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d20 b5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.384809 LLDP, length 82 [|LLDP] 17:37:53.384809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.384809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d28 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.384809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.384809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.384809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.384810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.384810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.394806 LLDP, length 82 [|LLDP] 17:37:53.394806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.394806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2f f7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.394806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.394806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.394806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.394806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.394806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.394806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.404837 LLDP, length 82 [|LLDP] 17:37:53.404837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.404838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d37 991e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.404838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.404838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.404838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.404838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.404838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.404838 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.404838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.404838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.404838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.414823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.414823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.414823 LLDP, length 82 [|LLDP] 17:37:53.414823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.414823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d3f 3a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.414823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.414823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.414824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.414824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.414824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.414824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.414824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.414824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.414824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.414824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.424820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.424821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.424821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.424821 LLDP, length 82 [|LLDP] 17:37:53.424821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.424821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d46 db5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.424821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.424821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.424821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.424821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.424821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.424821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.434825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.434825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.434825 LLDP, length 82 [|LLDP] 17:37:53.434825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.434825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d4e 7c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.434825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.434825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.434825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.434825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.434825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.434825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.434825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.434826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.434826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.434826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.444822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.444822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.444822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.444822 LLDP, length 82 [|LLDP] 17:37:53.444823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.444823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d56 1d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.444823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.444823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.444823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.444823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.444823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.444823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.454820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.454820 LLDP, length 82 [|LLDP] 17:37:53.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5d bebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.454821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.454821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.454821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.454821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.464815 LLDP, length 82 [|LLDP] 17:37:53.464815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.464815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d65 5fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.464815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.464815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.464815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.464815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.474806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.474806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.474806 LLDP, length 82 [|LLDP] 17:37:53.474806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.474806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6d 00fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.474806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.474806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.474806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.474806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.484815 LLDP, length 82 [|LLDP] 17:37:53.484815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.484815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d74 a21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.484815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.484815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.484815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.484815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.484815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.484815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.494813 LLDP, length 82 [|LLDP] 17:37:53.494813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.494813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7c 433e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.494813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.494813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.494813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.494813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.494813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.494813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.504824 LLDP, length 82 [|LLDP] 17:37:53.504824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.504824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d83 e45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.504824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.504824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.504824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.504824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.504824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.504824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.504825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.504825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.504825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.504825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.504825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.504825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.514816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.514816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.514816 LLDP, length 82 [|LLDP] 17:37:53.514816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.514816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8b 857e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.514816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.514816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.514816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.514817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.514817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.514817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.514817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.514817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.514817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.514817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.524816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.524816 LLDP, length 82 [|LLDP] 17:37:53.524816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.524816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d93 269e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.524816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.524817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.524817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.524817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.524817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.524817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.534815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.534815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.534816 LLDP, length 82 [|LLDP] 17:37:53.534816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.534816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9a c7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.534816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.534816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.534816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.534816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.534816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.534816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.534816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.544815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.544815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.544815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.544816 LLDP, length 82 [|LLDP] 17:37:53.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da2 68de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.544816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.544816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.544816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.544816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.544816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.554816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.554816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.554816 LLDP, length 82 [|LLDP] 17:37:53.554816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.554816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0daa 09fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.554816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.554816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.554816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.554817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.554817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.554817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.554817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.554817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.554817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.554817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.564812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.564813 LLDP, length 82 [|LLDP] 17:37:53.564813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.564813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db1 ab1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.564813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.564813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.564813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.564813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.564813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.564813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.564813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.574805 LLDP, length 82 [|LLDP] 17:37:53.574805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.574805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db9 4c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.574806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.584806 LLDP, length 82 [|LLDP] 17:37:53.584807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.584807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc0 ed5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.584807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.584807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.584807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.584807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.594806 LLDP, length 82 [|LLDP] 17:37:53.594806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.594806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc8 8e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.594806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.594806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.594806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.594807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.604820 LLDP, length 82 [|LLDP] 17:37:53.604820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.604820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd0 2f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.604820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.604820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.604820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.604820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.604820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.604820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.604820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.604821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.604821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.604821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.604821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.604821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.614815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.614815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.614815 LLDP, length 82 [|LLDP] 17:37:53.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd7 d0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.614816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.624816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.624816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.624817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.624817 LLDP, length 82 [|LLDP] 17:37:53.624817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.624817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ddf 71de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.624817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.624817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.624817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.624817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.624817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.624817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.634816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.634816 LLDP, length 82 [|LLDP] 17:37:53.634816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.634816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de7 12fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.634816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.634816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.634817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.634817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.634817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.634817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.634817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.634817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.634817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.634817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.644813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.644813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.644813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.644813 LLDP, length 82 [|LLDP] 17:37:53.644813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.644813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dee b41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.644813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.644813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.644813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.644813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.644814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.644814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.644814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.644814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.644814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.654823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.654823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.654823 LLDP, length 82 [|LLDP] 17:37:53.654824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.654824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df6 553e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.654824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.654824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.654824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.654824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.654824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.654824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.654824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.664812 LLDP, length 82 [|LLDP] 17:37:53.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.664812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dfd f65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.664812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.664812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.664812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.664812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.674806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.674806 LLDP, length 82 [|LLDP] 17:37:53.674806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.674806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e05 977e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.674807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.674807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.674807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.674807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.684807 LLDP, length 82 [|LLDP] 17:37:53.684807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.684807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0d 389e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.684807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.684807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.684807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.684807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.684807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.684807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.694806 LLDP, length 82 [|LLDP] 17:37:53.694806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.694806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e14 d9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.694806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.694806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.694806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.694806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.704821 LLDP, length 82 [|LLDP] 17:37:53.704821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.704821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1c 7ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.704821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.704821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.704821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.704821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.704821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.704821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.704821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.704821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.704822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.704822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.714817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.714817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.714817 LLDP, length 82 [|LLDP] 17:37:53.714817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.714817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e24 1bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.714817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.714818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.714818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.714818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.714818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.714818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.724814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.724814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.724814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.724814 LLDP, length 82 [|LLDP] 17:37:53.724814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.724814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2b bd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.724815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.724815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.724815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.724815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.724815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.724815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.734816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.734816 LLDP, length 82 [|LLDP] 17:37:53.734816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.734816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e33 5e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.734816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.734816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.734816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.734816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.734816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.734816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.734816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.734817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.744816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.744817 LLDP, length 82 [|LLDP] 17:37:53.744817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.744817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3a ff5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.744817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.744817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.744817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.744817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.744817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.744817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.754818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.754818 LLDP, length 82 [|LLDP] 17:37:53.754818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.754818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e42 a07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.754818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.754818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.754818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.754818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.754818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.754818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.754818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.754819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.764813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.764813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.764814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.764814 LLDP, length 82 [|LLDP] 17:37:53.764814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.764814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4a 419e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.764814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.764814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.764814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.764814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.764814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.764814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.764814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.774806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.774806 LLDP, length 82 [|LLDP] 17:37:53.774806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.774806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e51 e2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.774806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.774806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.774807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.784806 LLDP, length 82 [|LLDP] 17:37:53.784806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.784806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e59 83de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.784806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.784806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.784806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.784806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.794805 LLDP, length 82 [|LLDP] 17:37:53.794805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.794805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e61 24fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.794805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.794805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.794805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.794805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.794805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.794805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.804819 LLDP, length 82 [|LLDP] 17:37:53.804819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.804819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e68 c61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.804819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.804819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.804819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.804819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.804819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.804819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.804819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.804819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.804819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.804820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.804820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.804820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.814818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.814818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.814818 LLDP, length 82 [|LLDP] 17:37:53.814818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.814818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e70 673e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.814818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.814818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.814818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.814818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.814818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.814818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.814818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.814819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.814819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.814819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.824817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.824817 LLDP, length 82 [|LLDP] 17:37:53.824817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.824817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e78 085e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.824817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.824817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.824817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.824817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.824818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.824818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.824818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.824818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.824818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.834814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.834814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.834814 LLDP, length 82 [|LLDP] 17:37:53.834814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.834814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7f a97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.834814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.834815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.834815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.834815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.834815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.834815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.834815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.844814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.844815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.844815 LLDP, length 82 [|LLDP] 17:37:53.844815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.844815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e87 4a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.844815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.844815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.844815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.844815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.844815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.844815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.854815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.854815 LLDP, length 82 [|LLDP] 17:37:53.854815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.854815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e8e ebbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.854815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.854815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.854815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.854815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.854815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.864812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.864812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.864812 LLDP, length 82 [|LLDP] 17:37:53.864812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.864812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e96 8cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.864812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.864812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.864812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.864812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.864812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.874807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.874807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.874807 LLDP, length 82 [|LLDP] 17:37:53.874807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.874807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e9e 2dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.874808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.874808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.874808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.884804 LLDP, length 82 [|LLDP] 17:37:53.884804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.884804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea5 cf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.884804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.884804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.884805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.884805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.884805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.894805 LLDP, length 82 [|LLDP] 17:37:53.894805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.894805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ead 703e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.894805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.894805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.894805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.894805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.894805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.894805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.904822 LLDP, length 82 [|LLDP] 17:37:53.904822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.904822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb5 115e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.904822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.904822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.904822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.904822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.904822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.904823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.904823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.904823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.904823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.904823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.904823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.904823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.914817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.914818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.914818 LLDP, length 82 [|LLDP] 17:37:53.914818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.914818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebc b27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.914818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.914818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.914818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.914818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.914818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.914818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.914818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.924818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.924818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.924818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.924818 LLDP, length 82 [|LLDP] 17:37:53.924818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.924818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec4 539e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.924818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.924818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.924818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.924818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.924819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.924819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.924819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.924819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.924819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.934815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.934815 LLDP, length 82 [|LLDP] 17:37:53.934815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.934815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecb f4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.934815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.934815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.934816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.934816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.934816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.934816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.934816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.934816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.934816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.934816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.944815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.944815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.944815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.944815 LLDP, length 82 [|LLDP] 17:37:53.944815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.944815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed3 95de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.944815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.944816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.944816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.944816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.944816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.944816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.954820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.954820 LLDP, length 82 [|LLDP] 17:37:53.954820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.954821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edb 36fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.954821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.954821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.954821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.954821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.954821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.954821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.954821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.964813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.964813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.964813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.964813 LLDP, length 82 [|LLDP] 17:37:53.964813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.964813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee2 d81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.964813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.964813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.964813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.964813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.964813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.964814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.964814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.974807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.974807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.974807 LLDP, length 82 [|LLDP] 17:37:53.974807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.974807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eea 793e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.974807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.974807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.974807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.974807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.984806 LLDP, length 82 [|LLDP] 17:37:53.984806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.984806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef2 1a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.984806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.984806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.984806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.984806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.984807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.984807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.994807 LLDP, length 82 [|LLDP] 17:37:53.994807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.994807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef9 bb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.994807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.994807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.994807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.994807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.994807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.994807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.004818 LLDP, length 82 [|LLDP] 17:37:54.004818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.004818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f01 5c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.004818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.004818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.004818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.004818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.004819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.004819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.004819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.004819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.004819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.004819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.014815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.014815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.014815 LLDP, length 82 [|LLDP] 17:37:54.014815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.014815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f08 fdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.014816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.014816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.014816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.014816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.014827 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.014827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.014827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.014827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.014827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.024820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.024820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.024820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.024820 LLDP, length 82 [|LLDP] 17:37:54.024820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.024820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f10 9ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.024820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.024820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.024820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.024820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.024820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.024821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.024821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.024821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.024821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.034815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.034815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.034815 LLDP, length 82 [|LLDP] 17:37:54.034815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.034815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f18 3ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.034815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.034816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.034816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.034816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.034816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.034816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.034816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.044814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.044814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.044814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.044814 LLDP, length 82 [|LLDP] 17:37:54.044814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.044814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1f e11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.044814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.044814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.044814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.044814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.044814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.044815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.044815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.044815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.044815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.054815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.054815 LLDP, length 82 [|LLDP] 17:37:54.054815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.054815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f27 823e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.054815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.054815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.054815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.054815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.054816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.054816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.054816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.054816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.054816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.064815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.064815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.064815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.064816 LLDP, length 82 [|LLDP] 17:37:54.064816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.064816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f2f 235e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.064816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.064816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.064816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.064816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.064816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.064816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.064816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.074807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.074807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.074807 LLDP, length 82 [|LLDP] 17:37:54.074807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.074807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f36 c47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.074807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.074807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.074807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.074807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.084806 LLDP, length 82 [|LLDP] 17:37:54.084806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.084806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f3e 659e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.084806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.084806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.084806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.084807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.084807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.084807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.094806 LLDP, length 82 [|LLDP] 17:37:54.094806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.094806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f46 06be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.094806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.094806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.094806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.094806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.094806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.094806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.104818 LLDP, length 82 [|LLDP] 17:37:54.104818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.104818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4d a7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.104818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.104818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.104818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.104818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.104818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.104818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.104818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.104818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.104819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.104819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.104819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.104819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.114817 LLDP, length 82 [|LLDP] 17:37:54.114817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.114817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f55 48fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.114817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.114817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.114817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.114817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.114817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.124817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.124817 LLDP, length 82 [|LLDP] 17:37:54.124817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.124818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5c ea1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.124818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.124818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.124818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.124818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.124818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.124818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.134820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.134820 LLDP, length 82 [|LLDP] 17:37:54.134820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.134820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f64 8b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.134820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.134820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.134820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.134820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.134820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.134820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.134821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.134821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.144816 LLDP, length 82 [|LLDP] 17:37:54.144816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.144816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6c 2c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.144816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.144816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.144816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.144816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.144816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.144817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.144817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.154815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.154815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.154815 LLDP, length 82 [|LLDP] 17:37:54.154815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.154815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f73 cd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.154815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.154815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.154815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.154815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.154815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.154815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.154816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.154816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.154816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.154816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.164814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.164814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.164814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.164814 LLDP, length 82 [|LLDP] 17:37:54.164814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.164814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7b 6e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.164814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.164814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.164815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.164815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.164815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.164815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.164815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.174806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.174806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.174806 LLDP, length 82 [|LLDP] 17:37:54.174806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.174806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f83 0fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.174806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.174806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.174807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.174807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.184806 LLDP, length 82 [|LLDP] 17:37:54.184806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.184806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8a b0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.184806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.184806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.184806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.184806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.194806 LLDP, length 82 [|LLDP] 17:37:54.194806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.194806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f92 51fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.194806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.194806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.194806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.194806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.194806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.194806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.204818 LLDP, length 82 [|LLDP] 17:37:54.204818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.204818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f99 f31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.204818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.204818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.204818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.204819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.204819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.204819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.204819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.204819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.204819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.204819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.204819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.204819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.214814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.214814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.214814 LLDP, length 82 [|LLDP] 17:37:54.214815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.214815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa1 943e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.214815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.214815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.214815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.214815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.214815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.214815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.214815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.224816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.224816 LLDP, length 82 [|LLDP] 17:37:54.224816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.224817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa9 355e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.224817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.224817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.224817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.224817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.224817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.224817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.234822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.234822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.234822 LLDP, length 82 [|LLDP] 17:37:54.234822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.234822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb0 d67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.234822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.234822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.234823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.234823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.234823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.234823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.234823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.234823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.234823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.234823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.244817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.244817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.244817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.244817 LLDP, length 82 [|LLDP] 17:37:54.244817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.244817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb8 779e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.244818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.244818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.244818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.244818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.244818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.244818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.254815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.254815 LLDP, length 82 [|LLDP] 17:37:54.254815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.254815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc0 18be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.254815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.254815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.254815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.254815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.254815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.254815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.264814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.264814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.264814 LLDP, length 82 [|LLDP] 17:37:54.264814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.264814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc7 b9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.264814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.264814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.264814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.264814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.264814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.274806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.274806 LLDP, length 82 [|LLDP] 17:37:54.274806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.274806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fcf 5afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.274806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.274806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.274806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.284806 LLDP, length 82 [|LLDP] 17:37:54.284806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.284806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd6 fc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.284806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.284806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.284806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.284806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.284806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.284807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.294806 LLDP, length 82 [|LLDP] 17:37:54.294807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.294807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fde 9d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.294807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.294807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.294807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.294807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.294807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.294807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.304816 LLDP, length 82 [|LLDP] 17:37:54.304816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.304817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe6 3e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.304817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.304817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.304817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.304817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.304817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.304817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.304817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.304817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.304817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.314814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.314814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.314814 LLDP, length 82 [|LLDP] 17:37:54.314814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.314814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fed df7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.314815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.314815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.314815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.314815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.314815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.314815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.324814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.324815 LLDP, length 82 [|LLDP] 17:37:54.324815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.324815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff5 809e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.324815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.324815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.324815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.324815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.324815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.324815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.334815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.334820 LLDP, length 82 [|LLDP] 17:37:54.334820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.334820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ffd 21be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.334820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.334820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.334820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.334820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.334820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.334820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.344815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.344815 LLDP, length 82 [|LLDP] 17:37:54.344815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.344816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1004 c2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.344816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.344816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.344816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.344816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.344816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.344816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.353147 IP6 fe80::36ef:b6ff:feec:2a51 > ff02::2: ICMP6, router solicitation, length 16 17:37:54.354811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.354811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.354811 LLDP, length 82 [|LLDP] 17:37:54.354811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.354811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100c 63fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.354811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.354811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.354811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.354811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.354811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.354812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.354812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.354812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.354812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.354812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.364814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.364814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.364814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.364814 LLDP, length 82 [|LLDP] 17:37:54.364814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.364814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1014 051e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.364814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.364814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.364815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.364815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.364815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.364815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.364815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.374827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.374827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.374827 LLDP, length 82 [|LLDP] 17:37:54.374828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.374828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101b a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.374828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.374828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.374828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.374828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.384810 LLDP, length 82 [|LLDP] 17:37:54.384810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.384810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1023 475e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.384810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.384810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.384811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.384811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.394840 LLDP, length 82 [|LLDP] 17:37:54.394840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.394841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102a e87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.394841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.394841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.394841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.394841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.394841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.394841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.404849 LLDP, length 82 [|LLDP] 17:37:54.404849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.404849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1032 899e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.404849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.404849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.404849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.404849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.404849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.404849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.404849 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.404850 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.404850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.404850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.404850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.404850 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.414841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.414841 LLDP, length 82 [|LLDP] 17:37:54.414841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.414841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103a 2abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.414841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.414841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.414841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.414841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.414841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.414841 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.414841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.414842 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.424819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.424819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.424819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.424819 LLDP, length 82 [|LLDP] 17:37:54.424819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.424819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1041 cbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.424820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.424820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.424820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.424820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.424820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.424820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.434832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.434832 LLDP, length 82 [|LLDP] 17:37:54.434832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.434832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1049 6cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.434832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.434832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.434832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.434832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.434832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.434832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.434833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.434833 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.444823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.444823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.444823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.444823 LLDP, length 82 [|LLDP] 17:37:54.444823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.444823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1051 0e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.444823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.444824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.444824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.444824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.444824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.444824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.454819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.454820 LLDP, length 82 [|LLDP] 17:37:54.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1058 af3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.454820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.454820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.454820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5727 packets captured 5727 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 2] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg2 with rc 0 and out 17:37:50.074863 LLDP, length 82 [|LLDP] 17:37:50.074863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.074863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034b 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.074863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.074863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.074863 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.074863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.074863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.074864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.074864 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.074864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.074864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.074864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.074864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.074864 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.084812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.084812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.084813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.084813 LLDP, length 82 [|LLDP] 17:37:50.084813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.084813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0352 a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.084813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.084813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.084813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.084813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.084813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.084813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.084813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.094813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.094813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.094813 LLDP, length 82 [|LLDP] 17:37:50.094813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.094813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035a 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.094813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.094813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.094813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.094813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.094813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.094814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.094814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.094814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.094814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.094814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.104814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.104814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.104814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.104814 LLDP, length 82 [|LLDP] 17:37:50.104815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.104815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0361 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.104815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.104815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.104815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.104815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.104815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.104815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.104815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.114815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.114815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.114815 LLDP, length 82 [|LLDP] 17:37:50.114815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.114815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0369 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.114815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.114815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.114816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.114816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.114816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.114816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.114816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.114816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.114816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.114816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.124821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.124821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.124821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.124821 LLDP, length 82 [|LLDP] 17:37:50.124822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.124822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0371 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.124822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.124822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.124822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.124822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.124822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.124822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.124822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.134812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.134812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.134812 LLDP, length 82 [|LLDP] 17:37:50.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.134812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0378 c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.134813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.134813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.134813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.134813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.134813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.134813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.134813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.134813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.144813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.144813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.144814 LLDP, length 82 [|LLDP] 17:37:50.144814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.144814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0380 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.144814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.144814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.144814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.144814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.144814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.144814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.144814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.154812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.154812 LLDP, length 82 [|LLDP] 17:37:50.154812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.154812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0388 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.154812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.154812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.154812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.154812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.154812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.154812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.154812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.164809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.164809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.164809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.164809 LLDP, length 82 [|LLDP] 17:37:50.164809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.164809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038f ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.164810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.164810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.164810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.164810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.164810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.164810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.164810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.174802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.174802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.174802 LLDP, length 82 [|LLDP] 17:37:50.174802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.174803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0397 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.174803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.174803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.174803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.174803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.184805 LLDP, length 82 [|LLDP] 17:37:50.184805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.184805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 039e eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.184805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.184805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.184806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.184806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.194807 LLDP, length 82 [|LLDP] 17:37:50.194807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.194807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a6 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.194807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.194807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.194808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.194808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.194808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.194808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.204833 LLDP, length 82 [|LLDP] 17:37:50.204834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.204834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ae 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.204834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.204834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.204834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.204834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.204834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.204834 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.204834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.204834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.204834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.204834 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.214814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.214814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.214815 LLDP, length 82 [|LLDP] 17:37:50.214815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.214815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b5 d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.214815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.214815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.214815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.214815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.214815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.214815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.214815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.214815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.224815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.224816 LLDP, length 82 [|LLDP] 17:37:50.224816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.224816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bd 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.224816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.224816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.224816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.224816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.224816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.224816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.224816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.234815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.234816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.234816 LLDP, length 82 [|LLDP] 17:37:50.234816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.234816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c5 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.234816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.234816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.234816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.234816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.234816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.234816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.234816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.234816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.234816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.234817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.244821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.244821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.244821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.244821 LLDP, length 82 [|LLDP] 17:37:50.244821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.244821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cc b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.244821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.244821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.244822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.244822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.244822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.244822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.244822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.244822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.244822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.254813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.254813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.254813 LLDP, length 82 [|LLDP] 17:37:50.254813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.254813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d4 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.254813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.254814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.254814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.254814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.254814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.254814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.254814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.254814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.264809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.264810 LLDP, length 82 [|LLDP] 17:37:50.264810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.264810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03db f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.264810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.264810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.264810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.274802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.274803 LLDP, length 82 [|LLDP] 17:37:50.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e3 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.274803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.274803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.284804 LLDP, length 82 [|LLDP] 17:37:50.284804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.284804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03eb 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.284804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.284804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.284804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.284804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.284804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.284805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.294823 LLDP, length 82 [|LLDP] 17:37:50.294823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.294823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f2 db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.294823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.294823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.294824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.294824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.294824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.294824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.304839 LLDP, length 82 [|LLDP] 17:37:50.304839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.304839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fa 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.304839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.304839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.304839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.304839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.304839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.304839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.304840 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.304840 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.304840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.304840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.304840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.304840 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.314815 LLDP, length 82 [|LLDP] 17:37:50.314815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.314815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0402 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.314815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.314815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.314815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.314815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.314815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.314815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.314816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.314816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.324815 LLDP, length 82 [|LLDP] 17:37:50.324815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.324815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0409 be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.324815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.324815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.324815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.324815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.324815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.324815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.324816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.324816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.334820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.334820 LLDP, length 82 [|LLDP] 17:37:50.334820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.334820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0411 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.334820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.334820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.334820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.334820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.334821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.334821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.334821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.334821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.334821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.344814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.344814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.344815 LLDP, length 82 [|LLDP] 17:37:50.344815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.344815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0419 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.344815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.344815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.344815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.344815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.344815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.344815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.344815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.354813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.354813 LLDP, length 82 [|LLDP] 17:37:50.354813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.354813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0420 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.354814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.354814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.354814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.354814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.354814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.354814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.354814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.364809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.364810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.364810 LLDP, length 82 [|LLDP] 17:37:50.364810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.364810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0428 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.364810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.364810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.364810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.364810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.364810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.364810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.364810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.374805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.374805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.374805 LLDP, length 82 [|LLDP] 17:37:50.374805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.374805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042f e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.374805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.374805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.374805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.374805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.384803 LLDP, length 82 [|LLDP] 17:37:50.384803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.384803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0437 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.384804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.384804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.384804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.384804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.384804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.384804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.394805 LLDP, length 82 [|LLDP] 17:37:50.394805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.394805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 043f 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.394805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.394805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.394805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.394805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.394805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.394805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.404815 LLDP, length 82 [|LLDP] 17:37:50.404815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.404815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0446 c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.404816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.404816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.404816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.404816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.404816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.404816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.404816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.404816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.404816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.404816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.414811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.414811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.414811 LLDP, length 82 [|LLDP] 17:37:50.414811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.414811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 044e 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.414811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.414811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.414811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.414811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.414812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.414812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.414812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.414812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.414812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.414812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.424811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.424811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.424811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.424811 LLDP, length 82 [|LLDP] 17:37:50.424811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.424811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0456 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.424811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.424811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.424812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.424812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.424812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.424812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.424812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.424812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.424812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.434822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.434822 LLDP, length 82 [|LLDP] 17:37:50.434822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.434822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045d aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.434822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.434822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.434822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.434822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.434822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.434822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.434822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.434822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.434823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.444816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.444816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.444816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.444816 LLDP, length 82 [|LLDP] 17:37:50.444816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.444816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0465 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.444816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.444816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.444817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.444817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.444817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.444817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.444817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.444817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.444817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.454830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.454831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.454831 LLDP, length 82 [|LLDP] 17:37:50.454831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.454831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046c ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.454831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.454831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.454831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.454831 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.454831 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.454831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.454831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.454831 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.464812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.464813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.464813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.464813 LLDP, length 82 [|LLDP] 17:37:50.464813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.464813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0474 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.464813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.464813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.464813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.464813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.464813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.464813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.464813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.474803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.474803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.474803 LLDP, length 82 [|LLDP] 17:37:50.474803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.474803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047c 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.474804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.474804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.474804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.474804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.484809 LLDP, length 82 [|LLDP] 17:37:50.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0483 d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.484810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.484810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.494807 LLDP, length 82 [|LLDP] 17:37:50.494807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.494807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048b 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.494807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.494807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.494807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.494807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.494807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.494807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.504821 LLDP, length 82 [|LLDP] 17:37:50.504822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.504822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0493 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.504822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.504822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.504822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.504822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.504822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.504822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.504822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.504822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.514815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.514815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.514821 LLDP, length 82 [|LLDP] 17:37:50.514821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.514821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049a b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.514821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.514821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.514821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.514822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.514822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.514822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.514822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.514822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.514822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.524815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.524815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.524815 LLDP, length 82 [|LLDP] 17:37:50.524815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.524815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a2 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.524815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.524815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.524815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.524815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.524815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.524815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.524815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.524816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.534813 LLDP, length 82 [|LLDP] 17:37:50.534813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.534813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a9 f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.534813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.534813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.534813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.534813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.534813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.534813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.534814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.534814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.544813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.544813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.544813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.544813 LLDP, length 82 [|LLDP] 17:37:50.544813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.544813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b1 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.544813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.544813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.544813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.544813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.544813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.544814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.544814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.544814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.544814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.554814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.554814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.554814 LLDP, length 82 [|LLDP] 17:37:50.554814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.554814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b9 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.554814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.554814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.554814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.554814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.554814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.554815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.554815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.554815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.554815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.554815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.564811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.564811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.564811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.564811 LLDP, length 82 [|LLDP] 17:37:50.564811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.564811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c0 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.564811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.564811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.564811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.564811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.564812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.564812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.564812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.574806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.574807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.574807 LLDP, length 82 [|LLDP] 17:37:50.574807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.574807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c8 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.574807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.574807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.574807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.574807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.584803 LLDP, length 82 [|LLDP] 17:37:50.584803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.584803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d0 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.584803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.584803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.584803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.584803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.584803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.584803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.594806 LLDP, length 82 [|LLDP] 17:37:50.594806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.594806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d7 bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.594806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.594806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.594806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.594807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.604831 LLDP, length 82 [|LLDP] 17:37:50.604831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.604831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04df 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.604831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.604831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.604831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.604831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.604832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.604832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.604832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.604832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.604832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.604832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.604832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.604832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.614816 LLDP, length 82 [|LLDP] 17:37:50.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e6 ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.614817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.614817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.624814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.624814 LLDP, length 82 [|LLDP] 17:37:50.624815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.624815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ee a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.624815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.624815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.624815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.624815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.624815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.624815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.624815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.634815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.634816 LLDP, length 82 [|LLDP] 17:37:50.634816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.634816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f6 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.634816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.634816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.634816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.634816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.634816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.634816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.634816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.644814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.644814 LLDP, length 82 [|LLDP] 17:37:50.644814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.644815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04fd e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.644815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.644815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.644815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.644815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.644815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.644815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.644815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.654822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.654822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.654822 LLDP, length 82 [|LLDP] 17:37:50.654822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.654822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0505 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.654822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.654822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.654822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.654822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.654822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.654823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.654823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.654823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.654823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.654823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.664812 LLDP, length 82 [|LLDP] 17:37:50.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.664813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050d 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.664813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.664813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.664813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.664813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.674805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.674805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.674805 LLDP, length 82 [|LLDP] 17:37:50.674805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.674805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0514 c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.674805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.674805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.674805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.674805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.684803 LLDP, length 82 [|LLDP] 17:37:50.684803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.684803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051c 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.684803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.684803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.684803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.684803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.684803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.684803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.694804 LLDP, length 82 [|LLDP] 17:37:50.694804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.694805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0524 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.694805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.694805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.694805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.694805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.694805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.694805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.704814 LLDP, length 82 [|LLDP] 17:37:50.704814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.704815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052b a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.704815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.704815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.704815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.704815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.704815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.704815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.704815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.704815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.704815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.704815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.714814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.714814 LLDP, length 82 [|LLDP] 17:37:50.714814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.714815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0533 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.714815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.714815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.714815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.714815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.714815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.714815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.714815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.714815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.724815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.724815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.724815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.724815 LLDP, length 82 [|LLDP] 17:37:50.724815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.724816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053a eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.724816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.724816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.724816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.724816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.724816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.724816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.724816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.734815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.734815 LLDP, length 82 [|LLDP] 17:37:50.734815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.734815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0542 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.734815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.734815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.734815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.734816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.734816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.734816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.734816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.734816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.734816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.744815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.744816 LLDP, length 82 [|LLDP] 17:37:50.744816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.744816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054a 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.744816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.744816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.744816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.744816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.744816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.744816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.744816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.754815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.754815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.754815 LLDP, length 82 [|LLDP] 17:37:50.754815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.754815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0551 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.754815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.754815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.754815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.754815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.754815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.754816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.754816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.754816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.754816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.754816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.764810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.764810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.764810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.764810 LLDP, length 82 [|LLDP] 17:37:50.764810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.764810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0559 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.764810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.764810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.764810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.764810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.764810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.764810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.764811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.774805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.774805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.774805 LLDP, length 82 [|LLDP] 17:37:50.774805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.774805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0561 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.774805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.774805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.774806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.784805 LLDP, length 82 [|LLDP] 17:37:50.784805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.784805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0568 b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.784805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.784805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.784806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.784806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.794802 LLDP, length 82 [|LLDP] 17:37:50.794802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.794802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0570 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.794802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.794803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.794803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.794803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.794803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.794803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.804815 LLDP, length 82 [|LLDP] 17:37:50.804815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.804815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0577 f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.804815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.804815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.804815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.804815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.804815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.804815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.804815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.804816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.804816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.804816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.804816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.804816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.814822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.814822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.814822 LLDP, length 82 [|LLDP] 17:37:50.814822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.814823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057f 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.814823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.814823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.814823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.814823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.814823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.814823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.814823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.814823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.824814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.824814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.824814 LLDP, length 82 [|LLDP] 17:37:50.824814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.824814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0587 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.824814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.824814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.824814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.824814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.824814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.824814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.834818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.834818 LLDP, length 82 [|LLDP] 17:37:50.834818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.834818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 058e d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.834818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.834818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.834818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.834818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.834818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.834818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.834818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.834818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.834819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.844811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.844812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.844812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.844812 LLDP, length 82 [|LLDP] 17:37:50.844812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.844812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0596 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.844812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.844812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.844812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.844812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.844812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.844812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.844812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.854813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.854813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.854814 LLDP, length 82 [|LLDP] 17:37:50.854814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.854814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 059e 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.854814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.854814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.854814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.854814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.854814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.854814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.854814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.854814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.864811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.864811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.864811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.864811 LLDP, length 82 [|LLDP] 17:37:50.864811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.864811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a5 bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.864811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.864811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.864811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.864811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.864811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.864812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.864812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.874804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.874804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.874804 LLDP, length 82 [|LLDP] 17:37:50.874804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.874804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ad 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.874805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.874805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.874805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.874805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.884804 LLDP, length 82 [|LLDP] 17:37:50.884804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.884804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b4 fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.884804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.884804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.884804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.884804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.894804 LLDP, length 82 [|LLDP] 17:37:50.894804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.894804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bc 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.894804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.894804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.894804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.894804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.894804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.894804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.904817 LLDP, length 82 [|LLDP] 17:37:50.904817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.904817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c4 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.904817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.904817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.904817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.904817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.904817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.904818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.904818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.904818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.904818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.904818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.904818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.904818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.914815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.914815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.914815 LLDP, length 82 [|LLDP] 17:37:50.914815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.914816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cb e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.914816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.914816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.914816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.914816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.914816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.914816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.914816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.914816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.924814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.924814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.924814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.924814 LLDP, length 82 [|LLDP] 17:37:50.924814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.924815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d3 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.924815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.924815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.924815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.924815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.924815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.924815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.924815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.934815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.934815 LLDP, length 82 [|LLDP] 17:37:50.934815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.934815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05db 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.934815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.934815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.934815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.934815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.934815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.934815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.934816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.934816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.934816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.944811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.944811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.944811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.944811 LLDP, length 82 [|LLDP] 17:37:50.944811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.944812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e2 c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.944812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.944812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.944812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.944812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.944812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.944812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.944812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.954820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.954820 LLDP, length 82 [|LLDP] 17:37:50.954820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.954820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ea 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.954820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.954820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.954820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.954820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.954820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.954821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.954821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.954821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:50.954821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:50.964810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.964810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.964810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.964811 LLDP, length 82 [|LLDP] 17:37:50.964811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.964811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f2 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.964811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.964811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:50.964811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.964811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.964811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.964811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:50.964811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:50.974804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.974804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.974804 LLDP, length 82 [|LLDP] 17:37:50.974804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.974805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f9 a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.974805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.974805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.974805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.974805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.984804 LLDP, length 82 [|LLDP] 17:37:50.984804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.984804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0601 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.984804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.984804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.984804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.984804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.984804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.984804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:50.994804 LLDP, length 82 [|LLDP] 17:37:50.994804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:50.994805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0608 e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:50.994805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:50.994805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:50.994805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:50.994805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.994805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:50.994805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.004815 LLDP, length 82 [|LLDP] 17:37:51.004815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.004815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0610 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.004815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.004815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.004815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.004815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.004815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.004816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.004816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.004816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.004816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.004816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.004816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.004816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.014816 LLDP, length 82 [|LLDP] 17:37:51.014816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.014816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0618 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.014816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.014816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.014816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.014816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.014816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.014816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.024814 LLDP, length 82 [|LLDP] 17:37:51.024814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.024814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061f cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.024814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.024814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.024814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.024814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.024814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.024814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.024814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.024815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.034810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.034810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.034811 LLDP, length 82 [|LLDP] 17:37:51.034811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.034811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0627 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.034811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.034811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.034811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.034811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.034811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.034811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.034811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.034811 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.044816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.044816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.044816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.044816 LLDP, length 82 [|LLDP] 17:37:51.044816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.044816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 062f 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.044816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.044816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.044817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.044817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.044817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.044817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.044817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.044817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.044817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.054825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.054825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.054825 LLDP, length 82 [|LLDP] 17:37:51.054825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.054825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0636 b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.054826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.054826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.054826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.054826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.054826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.054826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.054826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.054826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.064810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.064810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.064810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.064810 LLDP, length 82 [|LLDP] 17:37:51.064810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.064811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 063e 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.064811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.064811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.064811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.064811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.064811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.064811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.064811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.074805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.074805 LLDP, length 82 [|LLDP] 17:37:51.074805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.074805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0645 f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.074805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.074805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.074805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.084804 LLDP, length 82 [|LLDP] 17:37:51.084804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.084804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064d 941e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.084804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.084804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.084805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.084805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.084805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.084805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.094806 LLDP, length 82 [|LLDP] 17:37:51.094806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.094806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0655 353e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.094806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.094807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.094807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.094807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.094807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.094807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.104816 LLDP, length 82 [|LLDP] 17:37:51.104816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.104817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065c d65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.104817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.104817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.104817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.104817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.104817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.104817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.104817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.104817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.104817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.104817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.114812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.114812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.114812 LLDP, length 82 [|LLDP] 17:37:51.114813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.114813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0664 777e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.114813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.114813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.114813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.114813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.114813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.114813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.114813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.114813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.124811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.124811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.124811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.124811 LLDP, length 82 [|LLDP] 17:37:51.124811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.124811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066c 189e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.124811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.124811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.124811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.124811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.124811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.124812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.124812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.124812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.124812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.134814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.134815 LLDP, length 82 [|LLDP] 17:37:51.134815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.134815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0673 b9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.134815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.134815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.134815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.134815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.134815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.134815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.134815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.144816 LLDP, length 82 [|LLDP] 17:37:51.144816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.144816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067b 5ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.144816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.144816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.144816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.144816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.144816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.144816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.144816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.144817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.155691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.155691 LLDP, length 82 [|LLDP] 17:37:51.155691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.155691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0682 fbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.155691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.155691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.155691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.155691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.155691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.155691 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.155691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.155692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.155692 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.168559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.168559 LLDP, length 82 [|LLDP] 17:37:51.168560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.168560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068a 9d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.168560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.168560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.168560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.168560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.168560 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.168560 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.168560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.174992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.174992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.174992 LLDP, length 82 [|LLDP] 17:37:51.174992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.174992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0692 3e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.174992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.174992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.174992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.174992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.184810 LLDP, length 82 [|LLDP] 17:37:51.184810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.184810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0699 df5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.184810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.184810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.184810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.184810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.184810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.184810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.194804 LLDP, length 82 [|LLDP] 17:37:51.194804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.194804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a1 807e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.194804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.194804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.194804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.194805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.194805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.194805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.204818 LLDP, length 82 [|LLDP] 17:37:51.204818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.204818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a9 219e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.204818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.204818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.204818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.204818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.204818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.204818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.204818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.204819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.204819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.204819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.204819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.204819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.214811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.214811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.214811 LLDP, length 82 [|LLDP] 17:37:51.214811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.214811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b0 c2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.214811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.214811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.214812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.214812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.214812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.214812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.214812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.214812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.214812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.214812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.224812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.224812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.224812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.224812 LLDP, length 82 [|LLDP] 17:37:51.224812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.224812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b8 63de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.224813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.224813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.224813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.224813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.224813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.224813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.224813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.234811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.234811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.234811 LLDP, length 82 [|LLDP] 17:37:51.234811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.234811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c0 04fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.234812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.234812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.234812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.234812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.234812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.234812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.234812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.234812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.244809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.244809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.244809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.244809 LLDP, length 82 [|LLDP] 17:37:51.244809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.244809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c7 a61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.244809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.244810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.244810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.244810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.244810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.244810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.244810 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.254816 LLDP, length 82 [|LLDP] 17:37:51.254816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.254816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06cf 473e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.254816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.264810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.264810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.264810 LLDP, length 82 [|LLDP] 17:37:51.264810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.264810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d6 e85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.264810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.264810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.264811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.274806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.274806 LLDP, length 82 [|LLDP] 17:37:51.274806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.274806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06de 897e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.274806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.274806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.274806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.284805 LLDP, length 82 [|LLDP] 17:37:51.284805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.284805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e6 2a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.284805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.284805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.284805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.284806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.294804 LLDP, length 82 [|LLDP] 17:37:51.294804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.294804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ed cbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.294804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.294804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.294804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.294804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.294804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.294804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.304815 LLDP, length 82 [|LLDP] 17:37:51.304815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.304815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f5 6cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.304816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.304816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.304816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.304816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.304816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.304816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.304816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.304816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.304816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.304816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.314816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.314816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.314816 LLDP, length 82 [|LLDP] 17:37:51.314816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.314816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06fd 0dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.314816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.314816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.314816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.314817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.314817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.314817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.314817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.314817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.314817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.314817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.324810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.324810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.324810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.324810 LLDP, length 82 [|LLDP] 17:37:51.324810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.324810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0704 af1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.324810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.324810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.324811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.324811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.324811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.324811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.324811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.324811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.324811 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.334810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.334810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.334810 LLDP, length 82 [|LLDP] 17:37:51.334810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.334816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070c 503e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.334817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.334817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.334817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.334817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.334817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.334817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.334817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.334817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.344809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.344809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.344809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.344809 LLDP, length 82 [|LLDP] 17:37:51.344809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.344809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0713 f15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.344809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.344809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.344809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.344809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.344809 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.344809 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.344810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.344810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.344810 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.354813 LLDP, length 82 [|LLDP] 17:37:51.354813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.354813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071b 927e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.354813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.354813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.354813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.354813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.354813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.354813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.354813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.364808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.364809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.364809 LLDP, length 82 [|LLDP] 17:37:51.364809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.364809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0723 339e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.364809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.364809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.364809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.364809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.364809 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.364809 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.364809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.374803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.374804 LLDP, length 82 [|LLDP] 17:37:51.374804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.374804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072a d4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.384808 LLDP, length 82 [|LLDP] 17:37:51.384808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.384808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0732 75de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.384808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.384808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.384808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.384808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.384808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.384808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.394803 LLDP, length 82 [|LLDP] 17:37:51.394803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.394803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073a 16fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.394803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.394803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.394803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.394803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.394803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.394803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.404813 LLDP, length 82 [|LLDP] 17:37:51.404813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.404813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0741 b81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.404813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.404813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.404813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.404813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.404813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.404813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.404813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.404813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.404813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.404814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.404814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.404814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.414817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.414817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.414817 LLDP, length 82 [|LLDP] 17:37:51.414817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.414817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0749 593e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.414817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.414817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.414818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.414818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.414818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.414818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.414818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.414818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.414818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.414818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.424812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.424812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.424812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.424812 LLDP, length 82 [|LLDP] 17:37:51.424812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.424812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0750 fa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.424813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.424813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.424813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.424813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.424813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.424813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.424813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.434817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.434817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.434817 LLDP, length 82 [|LLDP] 17:37:51.434817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.434817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0758 9b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.434818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.434818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.434818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.434818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.434818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.434818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.434818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.434818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.444831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.444831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.444831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.444831 LLDP, length 82 [|LLDP] 17:37:51.444831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.444831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0760 3c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.444831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.444831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.444832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.444832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.444832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.444832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.444832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.444832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.444832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.454820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.454820 LLDP, length 82 [|LLDP] 17:37:51.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0767 ddbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.454820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.454820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.454821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.464815 LLDP, length 82 [|LLDP] 17:37:51.464815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.464815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076f 7ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.464816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.464816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.464816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.464816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.474809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.474809 LLDP, length 82 [|LLDP] 17:37:51.474809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.474809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0777 1ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.474809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.474809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.474809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.484809 LLDP, length 82 [|LLDP] 17:37:51.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 077e c11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.484810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.484810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.484810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.494810 LLDP, length 82 [|LLDP] 17:37:51.494810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.494810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0786 623e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.494811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.494811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.494811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.494811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.494811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.494811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.504822 LLDP, length 82 [|LLDP] 17:37:51.504822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.504822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 078e 035e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.504822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.504822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.504822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.504822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.504823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.504823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.504823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.504823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.504823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.504823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.504823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.514821 LLDP, length 82 [|LLDP] 17:37:51.514821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.514821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0795 a47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.514821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.514821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.514821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.514821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.514821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.514821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.514821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.514822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.514822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.524818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.524818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.524818 LLDP, length 82 [|LLDP] 17:37:51.524818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.524818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079d 459e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.524818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.524818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.524818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.524818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.524818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.524818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.524819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.524819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.534813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.534813 LLDP, length 82 [|LLDP] 17:37:51.534813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.534813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a4 e6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.534813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.534813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.534813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.534813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.534814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.534814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.534814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.534814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.534814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.534814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.544816 LLDP, length 82 [|LLDP] 17:37:51.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ac 87de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.544816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.544816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.544816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.544816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.544817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.544817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.554816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.554816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.554816 LLDP, length 82 [|LLDP] 17:37:51.554816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.554816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b4 28fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.554816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.554817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.554817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.554817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.554817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.554817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.554817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.554817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.564812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.564812 LLDP, length 82 [|LLDP] 17:37:51.564812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.564812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bb ca1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.564812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.564812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.564812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.564813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.564813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.564813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.564813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.574806 LLDP, length 82 [|LLDP] 17:37:51.574806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.574806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c3 6b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.574806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.584806 LLDP, length 82 [|LLDP] 17:37:51.584807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.584807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cb 0c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.584807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.584807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.584807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.584807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.594807 LLDP, length 82 [|LLDP] 17:37:51.594807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.594807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d2 ad7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.594807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.594807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.594808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.594808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.604819 LLDP, length 82 [|LLDP] 17:37:51.604819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.604819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07da 4e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.604819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.604819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.604819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.604819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.604819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.604819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.604819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.604819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.604819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.604820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.604820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.604820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.614815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.614816 LLDP, length 82 [|LLDP] 17:37:51.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e1 efbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.614816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.614816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.624826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.624826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.624826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.624826 LLDP, length 82 [|LLDP] 17:37:51.624826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.624826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e9 90de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.624826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.624826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.624826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.624826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.624826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.624827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.624827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.624827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.624827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.634814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.634814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.634814 LLDP, length 82 [|LLDP] 17:37:51.634814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.634814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f1 31fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.634814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.634814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.634814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.634815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.634815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.634815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.634815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.634815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.634815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.634815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.644811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.644811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.644811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.644811 LLDP, length 82 [|LLDP] 17:37:51.644811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.644811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f8 d31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.644811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.644811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.644811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.644811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.644811 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.644811 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.644812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.644812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.644812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.654820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.654821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.654821 LLDP, length 82 [|LLDP] 17:37:51.654821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.654821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0800 743e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.654821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.654821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.654821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.654821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.654821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.654821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.654821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.654821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.654821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.654822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.664812 LLDP, length 82 [|LLDP] 17:37:51.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.664812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0808 155e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.664812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.664812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.664812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.664812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.664812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.664812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.674808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.674808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.674808 LLDP, length 82 [|LLDP] 17:37:51.674808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.674808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080f b67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.674808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.674808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.674808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.674808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.684809 LLDP, length 82 [|LLDP] 17:37:51.684809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.684809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0817 579e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.684809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.684809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.684809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.684809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.684809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.684809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.694807 LLDP, length 82 [|LLDP] 17:37:51.694807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.694807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 081e f8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.694807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.694807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.694807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.704820 LLDP, length 82 [|LLDP] 17:37:51.704820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.704820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0826 99de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.704820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.704820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.704820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.704821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.704821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.704821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.704821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.704821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.704821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.704821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.714817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.714818 LLDP, length 82 [|LLDP] 17:37:51.714818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.714818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 082e 3afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.714818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.714818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.714818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.714818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.714818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.714818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.714818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.724816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.724816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.724816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.724816 LLDP, length 82 [|LLDP] 17:37:51.724816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.724816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0835 dc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.724816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.724817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.724817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.724817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.724817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.724817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.724817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.734814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.734814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.734814 LLDP, length 82 [|LLDP] 17:37:51.734814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.734814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083d 7d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.734815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.734815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.734815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.734815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.734815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.734815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.734815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.734815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.744815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.744815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.744815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.744815 LLDP, length 82 [|LLDP] 17:37:51.744815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.744816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0845 1e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.744816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.744816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.744816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.744816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.744816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.744816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.744816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.754816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.754816 LLDP, length 82 [|LLDP] 17:37:51.754816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.754816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084c bf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.754816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.754816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.754816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.754816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.754816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.754816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.754816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.754817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.754817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.764811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.764811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.764811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.764811 LLDP, length 82 [|LLDP] 17:37:51.764812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.764812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0854 609e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.764812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.764812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.764812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.764812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.764812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.764812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.764812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.774808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.774808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.774808 LLDP, length 82 [|LLDP] 17:37:51.774808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.774808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085c 01be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.774808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.774808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.774808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.774808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.784806 LLDP, length 82 [|LLDP] 17:37:51.784807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.784807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0863 a2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.784807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.784807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.784807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.784807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.784807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.784807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.794805 LLDP, length 82 [|LLDP] 17:37:51.794805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.794805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086b 43fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.794805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.794805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.794805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.794806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.794806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.794806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.804823 LLDP, length 82 [|LLDP] 17:37:51.804823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.804823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0872 e51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.804823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.804823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.804823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.804824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.804824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.804824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.804824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.804824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.804824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.804824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.804824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.804824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.814826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.814826 LLDP, length 82 [|LLDP] 17:37:51.814826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.814826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087a 863e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.814826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.814826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.814826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.814826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.814826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.814826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.814826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.814826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.814827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.824818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.824819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.824819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.824819 LLDP, length 82 [|LLDP] 17:37:51.824819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.824819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0882 275e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.824819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.824819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.824819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.824819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.824819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.824819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.824819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.834854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.834854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.834854 LLDP, length 82 [|LLDP] 17:37:51.834854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.834854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0889 c87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.834854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.834854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.834854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.834854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.834855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.834855 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.834855 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.834855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.834855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.834855 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.844855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.844855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.844855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.844855 LLDP, length 82 [|LLDP] 17:37:51.844855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.844855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0891 699e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.844856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.844856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.844856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.844856 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.844856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.844856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.844856 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.854841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.854841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.854841 LLDP, length 82 [|LLDP] 17:37:51.854841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.854842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0899 0abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.854842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.854842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.854842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.854842 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.854842 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.854842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.854842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.854842 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.864835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.864835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.864835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.864835 LLDP, length 82 [|LLDP] 17:37:51.864836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.864836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a0 abde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.864836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.864836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.864836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.864836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.864836 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.864836 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.864836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.874835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.874835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.874835 LLDP, length 82 [|LLDP] 17:37:51.874835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.874835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a8 4cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.874836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.874836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.874836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.874836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.884833 LLDP, length 82 [|LLDP] 17:37:51.884833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.884833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08af ee1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.884833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.884833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.884833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.884833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.884833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.884833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.894833 LLDP, length 82 [|LLDP] 17:37:51.894833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.894833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b7 8f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.894833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.894833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.894833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.894833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.894834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.894834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.904833 LLDP, length 82 [|LLDP] 17:37:51.904833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.904833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08bf 305e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.904833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.904833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.904833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.904833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.904833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.904833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.904833 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.904833 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.904833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.904834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.904834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.904834 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.909148 LLDP, length 219: localhost 17:37:51.914817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.914817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.914817 LLDP, length 82 [|LLDP] 17:37:51.914817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.914817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c6 d17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.914817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.914817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.914817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.914817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.914818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.914818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.914818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.914818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.914818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.914818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.924824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.924825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.924825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.924825 LLDP, length 82 [|LLDP] 17:37:51.924825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.924825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ce 729e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.924825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.924825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.924825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.924825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.924825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.924825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.924825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.934822 LLDP, length 82 [|LLDP] 17:37:51.934822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.934822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d6 13be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.934822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.934822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.934822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.934822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.934822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.934822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.934822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.934823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.944817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.944817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.944817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.944817 LLDP, length 82 [|LLDP] 17:37:51.944818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.944818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08dd b4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.944818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.944818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.944818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.944818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.944818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.944818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.944818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.954815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.954816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.954816 LLDP, length 82 [|LLDP] 17:37:51.954816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.954816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e5 55fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.954816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.954816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.954816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.954816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.954816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.954816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.954816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:51.954816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:51.964816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.964816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.964816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.964816 LLDP, length 82 [|LLDP] 17:37:51.964816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.964816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ec f71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.964816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.964816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:51.964817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.964817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.964817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.964817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:51.964817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:51.974808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.974808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.974808 LLDP, length 82 [|LLDP] 17:37:51.974808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.974808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f4 983e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.974808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.974808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.974808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.974808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.984808 LLDP, length 82 [|LLDP] 17:37:51.984809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.984809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fc 395e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.984809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.984809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.984809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.984809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.984809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.984809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:51.994805 LLDP, length 82 [|LLDP] 17:37:51.994805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:51.994806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0903 da7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:51.994806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:51.994806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:51.994806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:51.994806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.994806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:51.994806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.004824 LLDP, length 82 [|LLDP] 17:37:52.004824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.004824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090b 7b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.004824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.004824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.004825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.004825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.004825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.004825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.004825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.004825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.004825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.004825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.004825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.004825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.014822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.014822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.014822 LLDP, length 82 [|LLDP] 17:37:52.014822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.014822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0913 1cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.014822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.014822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.014823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.014823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.014823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.014823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.014823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.014823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.014823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.014823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.024814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.024814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.024814 LLDP, length 82 [|LLDP] 17:37:52.024814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.024815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091a bdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.024815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.024815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.024815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.024815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.024815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.024815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.024815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.034814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.034814 LLDP, length 82 [|LLDP] 17:37:52.034814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.034814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0922 5efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.034814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.034814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.034814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.034815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.034815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.034815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.034815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.034815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.034815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.044831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.044831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.044831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.044831 LLDP, length 82 [|LLDP] 17:37:52.044832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.044832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092a 001e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.044832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.044832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.044832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.044832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.044832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.044832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.044832 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.054829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.054829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.054829 LLDP, length 82 [|LLDP] 17:37:52.054829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.054829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0931 a13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.054829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.054829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.054829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.054829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.054829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.054829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.054829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.054830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.054830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.054830 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.064819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.064819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.064819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.064819 LLDP, length 82 [|LLDP] 17:37:52.064819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.064820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0939 425e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.064820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.064820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.064820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.064820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.064820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.064820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.064820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.074805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.074805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.074805 LLDP, length 82 [|LLDP] 17:37:52.074805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.074806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0940 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.074806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.074806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.074806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.074806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.085078 LLDP, length 82 [|LLDP] 17:37:52.085078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.085078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0948 849e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.085078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.085078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.085078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.085078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.085078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.085078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.094808 LLDP, length 82 [|LLDP] 17:37:52.094808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.094808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0950 25be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.094809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.094809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.094809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.094809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.094809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.094809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.104826 LLDP, length 82 [|LLDP] 17:37:52.104826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.104826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0957 c6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.104826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.104826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.104826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.104826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.104826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.104826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.104826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.104826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.104826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.104827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.104827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.104827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.114818 LLDP, length 82 [|LLDP] 17:37:52.114818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.114818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095f 67fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.114818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.114818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.114818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.114818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.114818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.114818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.124817 LLDP, length 82 [|LLDP] 17:37:52.124817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.124817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0967 091e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.124817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.124817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.124817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.124817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.124817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.124817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.134812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.134812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.134812 LLDP, length 82 [|LLDP] 17:37:52.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.134813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 096e aa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.134813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.134813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.134813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.134813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.134813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.134813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.134813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.134813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.144856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.144856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.144856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.144856 LLDP, length 82 [|LLDP] 17:37:52.144856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.144856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0976 4b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.144856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.144856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.144856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.144856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.144857 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.144857 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.144857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.144857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.144857 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.154845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.154845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.154846 LLDP, length 82 [|LLDP] 17:37:52.154846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.154846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097d ec7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.154846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.154846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.154846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.154846 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.154846 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.154846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.154846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.154846 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.164825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.164826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.164826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.164826 LLDP, length 82 [|LLDP] 17:37:52.164826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.164826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0985 8d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.164826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.164826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.164826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.164826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.164826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.164826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.164826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.174810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.174811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.174811 LLDP, length 82 [|LLDP] 17:37:52.174811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.174811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098d 2ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.174811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.174811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.174811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.174811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.184808 LLDP, length 82 [|LLDP] 17:37:52.184808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.184808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0994 cfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.184808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.184808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.184808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.184808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.194812 LLDP, length 82 [|LLDP] 17:37:52.194812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.194812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099c 70fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.194812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.194812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.194812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.194812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.194812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.194812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.204822 LLDP, length 82 [|LLDP] 17:37:52.204822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.204822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a4 121e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.204822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.204822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.204822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.204822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.204822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.204823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.204823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.204823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.204823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.204823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.204823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.204823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.214825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.214825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.214825 LLDP, length 82 [|LLDP] 17:37:52.214825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.214825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ab b33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.214825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.214825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.214825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.214825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.214825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.214826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.214826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.214826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.214826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.214826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.224817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.224817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.224817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.224817 LLDP, length 82 [|LLDP] 17:37:52.224817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.224817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b3 545e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.224817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.224817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.224817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.224818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.224818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.224818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.224818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.224818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.224818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.234814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.234814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.234814 LLDP, length 82 [|LLDP] 17:37:52.234814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.234815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ba f57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.234815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.234815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.234815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.234815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.234815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.234815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.234815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.234815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.244815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.244815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.244815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.244815 LLDP, length 82 [|LLDP] 17:37:52.244815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.244815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c2 969e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.244815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.244815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.244816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.244816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.244816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.244816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.244816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.244816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.244816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.254815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.254815 LLDP, length 82 [|LLDP] 17:37:52.254815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.254815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ca 37be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.254815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.254815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.254815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.254816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.264809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.264809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.264809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.264809 LLDP, length 82 [|LLDP] 17:37:52.264809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.264809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d1 d8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.264809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.264809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.264810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.264810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.264810 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.264810 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.264810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.274802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.274802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.274802 LLDP, length 82 [|LLDP] 17:37:52.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d9 79fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.274803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.274803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.284802 LLDP, length 82 [|LLDP] 17:37:52.284802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.284802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e1 1b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.284802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.284802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.284802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.284802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.284802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.284802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.294808 LLDP, length 82 [|LLDP] 17:37:52.294808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.294808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e8 bc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.294808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.294808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.294809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.294809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.294809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.294809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.304826 LLDP, length 82 [|LLDP] 17:37:52.304826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.304826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f0 5d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.304826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.304826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.304826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.304826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.304826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.304826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.304827 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.304827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.304827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.304827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.304827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.304827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.314829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.314829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.314829 LLDP, length 82 [|LLDP] 17:37:52.314829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.314829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f7 fe7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.314829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.314829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.314829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.314829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.314829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.314829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.314829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.314830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.314830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.314830 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.324816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.324816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.324816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.324816 LLDP, length 82 [|LLDP] 17:37:52.324816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.324816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ff 9f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.324816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.324816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.324816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.324816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.324817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.324817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.324817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.324817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.324817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.334819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.334819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.334819 LLDP, length 82 [|LLDP] 17:37:52.334819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.334819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a07 40be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.334819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.334819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.334819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.334819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.334819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.334819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.334819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.334820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.334820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.334820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.344822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.344822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.344822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.344823 LLDP, length 82 [|LLDP] 17:37:52.344823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.344823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a0e e1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.344823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.344823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.344823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.344823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.344823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.344823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.344823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.354815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.354815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.354815 LLDP, length 82 [|LLDP] 17:37:52.354815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.354815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a16 82fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.354815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.354815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.354815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.354815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.354815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.354815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.354816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.354816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.354816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.354816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.364811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.364811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.364811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.364811 LLDP, length 82 [|LLDP] 17:37:52.364811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.364811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a1e 241e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.364811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.364811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.364811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.364811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.364812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.364812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.364812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.374803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.374803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.374803 LLDP, length 82 [|LLDP] 17:37:52.374803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.374803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a25 c53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.384802 LLDP, length 82 [|LLDP] 17:37:52.384803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.384803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2d 665e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.384803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.384803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.384803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.384803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.384803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.384803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.394806 LLDP, length 82 [|LLDP] 17:37:52.394806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.394806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a35 077e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.394807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.394807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.394807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.394807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.394807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.394807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.404818 LLDP, length 82 [|LLDP] 17:37:52.404818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.404818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3c a89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.404818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.404819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.404819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.404819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.404819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.404819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.404819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.404819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.404819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.404820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.404820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.404820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.414815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.414815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.414815 LLDP, length 82 [|LLDP] 17:37:52.414816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.414816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a44 49be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.414816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.414816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.414816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.414816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.414816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.414816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.414816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.414816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.424832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.424832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.424832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.424832 LLDP, length 82 [|LLDP] 17:37:52.424832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.424832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4b eade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.424832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.424832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.424832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.424832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.424832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.424832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.424833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.424833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.424833 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.434823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.434823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.434824 LLDP, length 82 [|LLDP] 17:37:52.434824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.434824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a53 8bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.434824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.434824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.434824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.434824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.434824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.434824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.434824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.434824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.444824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.444824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.444824 LLDP, length 82 [|LLDP] 17:37:52.444824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.444824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5b 2d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.444824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.444824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.444824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.444824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.444824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.444824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.444824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.444825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.454823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.454823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.454823 LLDP, length 82 [|LLDP] 17:37:52.454823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.454823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a62 ce3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.454823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.454823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.454823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.454823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.454823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.454823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.454824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.454824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.454824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.454824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.464815 LLDP, length 82 [|LLDP] 17:37:52.464816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.464816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6a 6f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.464816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.464816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.464816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.464816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.474809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.474809 LLDP, length 82 [|LLDP] 17:37:52.474809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.474809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a72 107e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.474809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.474809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.474809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.474809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.484808 LLDP, length 82 [|LLDP] 17:37:52.484809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.484809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a79 b19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.484809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.484809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.484809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.484809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.484809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.494832 LLDP, length 82 [|LLDP] 17:37:52.494832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.494832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a81 52be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.494832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.494832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.494832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.494832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.494832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.494832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.504819 LLDP, length 82 [|LLDP] 17:37:52.504819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.504819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a88 f3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.504819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.504819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.504819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.504819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.504820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.504820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.504820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.504820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.504820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.504820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.504820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.504820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.514816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.514816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.514817 LLDP, length 82 [|LLDP] 17:37:52.514817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.514817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a90 94fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.514817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.514817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.514817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.514817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.514817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.514817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.514817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.514817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.524816 LLDP, length 82 [|LLDP] 17:37:52.524816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.524816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a98 361e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.524816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.524816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.524816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.524816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.524816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.524816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.524816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.524817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.534825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.534825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.534825 LLDP, length 82 [|LLDP] 17:37:52.534825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.534825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9f d73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.534825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.534826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.534826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.534826 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.534826 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.534826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.534826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.534826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.544816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.544816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.544816 LLDP, length 82 [|LLDP] 17:37:52.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa7 785e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.544817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.544817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.544817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.544817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.544817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.544817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.544817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.554818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.554818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.554818 LLDP, length 82 [|LLDP] 17:37:52.554818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.554818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aaf 197e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.554818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.554818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.554818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.554818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.554818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.554818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.554818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.554819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.554819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.554819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.564814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.564814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.564814 LLDP, length 82 [|LLDP] 17:37:52.564814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.564814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab6 ba9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.564814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.564814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.564814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.564814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.564814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.564814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.574805 LLDP, length 82 [|LLDP] 17:37:52.574805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.574805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0abe 5bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.574805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.584806 LLDP, length 82 [|LLDP] 17:37:52.584806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.584806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac5 fcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.584806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.584806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.584806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.584806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.584806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.584806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.594807 LLDP, length 82 [|LLDP] 17:37:52.594807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.594807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0acd 9dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.594807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.594807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.594808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.594808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.594808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.604816 LLDP, length 82 [|LLDP] 17:37:52.604816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.604816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad5 3f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.604816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.604816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.604816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.604816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.604817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.604817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.604817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.604817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.604817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.604817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.604817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.604817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.614816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.614816 LLDP, length 82 [|LLDP] 17:37:52.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adc e03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.614817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.614817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.614817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.614817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.614817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.614817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.624813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.624814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.624814 LLDP, length 82 [|LLDP] 17:37:52.624814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.624814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae4 815e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.624814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.624814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.624814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.624814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.624814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.624814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.624814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.634813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.634813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.634813 LLDP, length 82 [|LLDP] 17:37:52.634813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.634813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aec 227e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.634813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.634813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.634813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.634813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.634813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.634813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.634814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.634814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.634814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.634814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.644814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.644814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.644814 LLDP, length 82 [|LLDP] 17:37:52.644814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.644814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af3 c39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.644814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.644815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.644815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.644815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.644815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.644815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.644815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.654819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.654820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.654820 LLDP, length 82 [|LLDP] 17:37:52.654820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.654820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afb 64be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.654820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.654820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.654820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.654820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.654820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.654820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.654820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.654820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.664813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.664813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.664813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.664813 LLDP, length 82 [|LLDP] 17:37:52.664813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.664813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b03 05de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.664813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.664813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.664813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.664813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.664814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.674806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.674806 LLDP, length 82 [|LLDP] 17:37:52.674806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.674806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0a a6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.674806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.674806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.674806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.684804 LLDP, length 82 [|LLDP] 17:37:52.684804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.684804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b12 481e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.684805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.684805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.684805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.684805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.684805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.684805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.694806 LLDP, length 82 [|LLDP] 17:37:52.694806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.694806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b19 e93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.694806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.694807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.694807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.704818 LLDP, length 82 [|LLDP] 17:37:52.704818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.704818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b21 8a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.704818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.704818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.704818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.704818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.704818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.704819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.704819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.704819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.704819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.704819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.704819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.704819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.714814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.714814 LLDP, length 82 [|LLDP] 17:37:52.714814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.714814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b29 2b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.714814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.714814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.714814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.714814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.714815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.714815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.714815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.714815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.714815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.714815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.724818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.724818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.724818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.724818 LLDP, length 82 [|LLDP] 17:37:52.724818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.724818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b30 cc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.724818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.724818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.724818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.724818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.724819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.724819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.724819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.724819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.724819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.734817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.734817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.734817 LLDP, length 82 [|LLDP] 17:37:52.734817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.734817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b38 6dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.734817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.734817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.734817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.734817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.734817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.734817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.734817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.734818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.734818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.734818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.744814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.744814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.744814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.744814 LLDP, length 82 [|LLDP] 17:37:52.744815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.744815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b40 0ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.744815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.744815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.744815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.744815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.744815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.744815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.744815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.754814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.754814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.754814 LLDP, length 82 [|LLDP] 17:37:52.754814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.754814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b47 affe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.754814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.754814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.754814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.754814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.754814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.754814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.754814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.754815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.754815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.754815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.764812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.764812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.764812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.764812 LLDP, length 82 [|LLDP] 17:37:52.764812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.764812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b4f 511e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.764812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.764813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.764813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.764813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.764813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.764813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.764813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.774804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.774804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.774804 LLDP, length 82 [|LLDP] 17:37:52.774804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.774805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b56 f23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.774805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.774805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.774805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.774805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.784805 LLDP, length 82 [|LLDP] 17:37:52.784805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.784805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b5e 935e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.784805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.784805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.784805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.784805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.784805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.794823 LLDP, length 82 [|LLDP] 17:37:52.794823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.794823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b66 347e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.794823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.794823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.794823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.794823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.794823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.794823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.804816 LLDP, length 82 [|LLDP] 17:37:52.804816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.804816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6d d59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.804817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.804817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.804817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.804817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.804817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.804817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.804817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.804817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.804817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.804817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.814817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.814817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.814817 LLDP, length 82 [|LLDP] 17:37:52.814817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.814817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b75 76be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.814817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.814817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.814817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.814817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.814817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.814817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.814817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.814818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.814818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.814818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.824817 LLDP, length 82 [|LLDP] 17:37:52.824817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.824817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7d 17de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.824817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.824817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.824817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.824817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.824817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.824817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.824818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.824818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.834812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.834812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.834812 LLDP, length 82 [|LLDP] 17:37:52.834812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.834812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b84 b8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.834812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.834812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.834812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.834812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.834812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.834813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.834813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.834813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.834813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.834813 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.844814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.844814 LLDP, length 82 [|LLDP] 17:37:52.844814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.844815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8c 5a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.844815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.844815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.844815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.844815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.844815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.844815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.844815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.854822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.854822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.854822 LLDP, length 82 [|LLDP] 17:37:52.854822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.854822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b93 fb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.854822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.854822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.854822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.854822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.854822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.854822 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.854822 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.854823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.854823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.854823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.864814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.864814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.864814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.864814 LLDP, length 82 [|LLDP] 17:37:52.864814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.864814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9b 9c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.864814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.864814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.864814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.864814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.864814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.864814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.864815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.874808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.874808 LLDP, length 82 [|LLDP] 17:37:52.874808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.874808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba3 3d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.874808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.874808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.874808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.884807 LLDP, length 82 [|LLDP] 17:37:52.884807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.884807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0baa de9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.884808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.884808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.884808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.884808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.884808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.884808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.894808 LLDP, length 82 [|LLDP] 17:37:52.894809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.894809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb2 7fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.894809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.894809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.894809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.894809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.894809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.894809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.904846 LLDP, length 82 [|LLDP] 17:37:52.904846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.904846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bba 20de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.904846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.904846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.904846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.904846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.904846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.904846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.904846 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.904846 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.904846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.904846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.904847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.904847 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.914846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.914846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.914846 LLDP, length 82 [|LLDP] 17:37:52.914846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.914846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc1 c1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.914846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.914846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.914847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.914847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.914847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.914847 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.914847 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.914847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.914847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.914847 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.924819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.924819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.924819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.924819 LLDP, length 82 [|LLDP] 17:37:52.924819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.924819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc9 631e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.924819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.924820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.924820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.924820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.924820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.924820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.924820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.934822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.934822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.934822 LLDP, length 82 [|LLDP] 17:37:52.934822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.934822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd1 043e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.934822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.934822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.934822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.934823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.934823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.934823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.934823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.934823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.934823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.934823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.944824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.944824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.944824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.944824 LLDP, length 82 [|LLDP] 17:37:52.944824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.944824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd8 a55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.944824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.944824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.944824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.944825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.944825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.944825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.944825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.944825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.944825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.954819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.954819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.954819 LLDP, length 82 [|LLDP] 17:37:52.954819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.954819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be0 467e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.954819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.954819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.954819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.954819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.954819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.954819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.954819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.954820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.954820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:52.954820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:52.964815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.964815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.964815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.964816 LLDP, length 82 [|LLDP] 17:37:52.964816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.964816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be7 e79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.964816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.964816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:52.964816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.964816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.964816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.964816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:52.964816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:52.974812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.974812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.974812 LLDP, length 82 [|LLDP] 17:37:52.974813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.974813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bef 88be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.974813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.974813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.974813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.974813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.984807 LLDP, length 82 [|LLDP] 17:37:52.984807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.984807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf7 29de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.984807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.984807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.984807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.984807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.984807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.984807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:52.994808 LLDP, length 82 [|LLDP] 17:37:52.994808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:52.994808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bfe cafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:52.994808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:52.994808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:52.994808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:52.994808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.994808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:52.994808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.004817 LLDP, length 82 [|LLDP] 17:37:53.004817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.004817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c06 6c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.004817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.004818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.004818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.004818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.004818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.004818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.004818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.004818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.014823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.014823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.014823 LLDP, length 82 [|LLDP] 17:37:53.014823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.014823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c0e 0d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.014823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.014823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.014824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.014824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.014824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.014824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.014824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.014824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.014824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.014824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.024816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.024817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.024817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.024817 LLDP, length 82 [|LLDP] 17:37:53.024817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.024817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c15 ae5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.024817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.024817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.024817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.024817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.024817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.024817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.024817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.034814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.034814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.034814 LLDP, length 82 [|LLDP] 17:37:53.034814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.034814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1d 4f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.034815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.034815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.034815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.034815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.034815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.034815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.034815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.034815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.044814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.044815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.044815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.044815 LLDP, length 82 [|LLDP] 17:37:53.044815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.044815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c24 f09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.044815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.044815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.044815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.044815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.044815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.044815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.044815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.054815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.054815 LLDP, length 82 [|LLDP] 17:37:53.054815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.054815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2c 91be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.054815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.054815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.054816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.054816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.054816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.054816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.054816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.054816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.054816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.054816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.064813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.064813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.064813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.064813 LLDP, length 82 [|LLDP] 17:37:53.064813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.064813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c34 32de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.064813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.064813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.064814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.064814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.064814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.064814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.064814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.074865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.074865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.074865 LLDP, length 82 [|LLDP] 17:37:53.074866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.074866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.074866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.074866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.074866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.074866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.084808 LLDP, length 82 [|LLDP] 17:37:53.084808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.084808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c43 751e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.084808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.084808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.084808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.084808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.084808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.084808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.094807 LLDP, length 82 [|LLDP] 17:37:53.094807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.094807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4b 163e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.094807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.094807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.094807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.094808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.094808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.094808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.104820 LLDP, length 82 [|LLDP] 17:37:53.104820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.104820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c52 b75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.104820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.104820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.104821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.104821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.104821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.104821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.104821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.104821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.104821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.104821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.104821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.104821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.114817 LLDP, length 82 [|LLDP] 17:37:53.114817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.114817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5a 587e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.114817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.114817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.114817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.114817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.114817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.114817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.114818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.124816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.124816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.124816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.124816 LLDP, length 82 [|LLDP] 17:37:53.124816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.124816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c61 f99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.124817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.124817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.124817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.124817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.124817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.124817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.124817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.134815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.134815 LLDP, length 82 [|LLDP] 17:37:53.134815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.134815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c69 9abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.134815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.134815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.134815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.134815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.134815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.134815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.134816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.134816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.134816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.144814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.144814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.144814 LLDP, length 82 [|LLDP] 17:37:53.144814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.144814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c71 3bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.144814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.144814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.144814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.144814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.144814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.144815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.144815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.144815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.144815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.154828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.154828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.154828 LLDP, length 82 [|LLDP] 17:37:53.154828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.154828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c78 dcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.154828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.154828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.154829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.154829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.154829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.154829 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.154829 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.154829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.154829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.154829 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.164816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.164816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.164817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.164817 LLDP, length 82 [|LLDP] 17:37:53.164817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.164817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c80 7e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.164817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.164817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.164817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.164817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.164817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.164817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.164817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.174809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.174809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.174809 LLDP, length 82 [|LLDP] 17:37:53.174809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.174809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c88 1f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.174809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.174809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.174809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.174809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.184808 LLDP, length 82 [|LLDP] 17:37:53.184808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.184808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8f c05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.184808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.184808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.184808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.184809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.184809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.184809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.194807 LLDP, length 82 [|LLDP] 17:37:53.194807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.194807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c97 617e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.194807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.194807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.194807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.194807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.194807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.194807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.204820 LLDP, length 82 [|LLDP] 17:37:53.204820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.204820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c9f 029e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.204821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.204821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.204821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.204821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.204821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.204821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.204821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.204821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.204821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.204821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.214817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.214817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.214817 LLDP, length 82 [|LLDP] 17:37:53.214817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.214817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca6 a3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.214817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.214818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.214818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.214818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.214818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.214818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.214818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.214818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.224814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.224814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.224814 LLDP, length 82 [|LLDP] 17:37:53.224814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.224814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cae 44de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.224814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.224814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.224814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.224814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.224814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.224814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.224814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.224815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.234819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.234819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.234819 LLDP, length 82 [|LLDP] 17:37:53.234819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.234819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb5 e5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.234819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.234819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.234819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.234819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.234819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.234819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.234819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.234820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.234820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.234820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.244816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.244816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.244816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.244816 LLDP, length 82 [|LLDP] 17:37:53.244816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.244816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbd 871e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.244816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.244817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.244817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.244817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.244817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.244817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.244817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.254816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.254816 LLDP, length 82 [|LLDP] 17:37:53.254816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.254816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc5 283e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.254816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.254816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.254816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.254816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.254816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.254816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.254817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.254817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.254817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.254817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.264812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.264812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.264812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.264812 LLDP, length 82 [|LLDP] 17:37:53.264812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.264812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccc c95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.264812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.264812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.264812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.264812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.264812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.264812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.264813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.274803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.274803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.274803 LLDP, length 82 [|LLDP] 17:37:53.274803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.274803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd4 6a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.274803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.274804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.274804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.274804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.284807 LLDP, length 82 [|LLDP] 17:37:53.284807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.284807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cdc 0b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.284807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.284807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.284807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.284808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.284808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.284808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.294813 LLDP, length 82 [|LLDP] 17:37:53.294813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.294813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce3 acbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.294813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.294813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.294813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.294813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.294813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.294813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.304837 LLDP, length 82 [|LLDP] 17:37:53.304837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.304837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ceb 4dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.304837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.304837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.304838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.304838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.304838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.304838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.304838 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.304838 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.304838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.304838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.304838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.304838 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.314823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.314823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.314823 LLDP, length 82 [|LLDP] 17:37:53.314823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.314824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf2 eefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.314824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.314824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.314824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.314824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.314824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.314824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.314824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.314824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.324819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.324819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.324819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.324819 LLDP, length 82 [|LLDP] 17:37:53.324819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.324819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfa 901e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.324819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.324820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.324820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.324820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.324820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.324820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.324820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.334813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.334813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.334813 LLDP, length 82 [|LLDP] 17:37:53.334813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.334813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d02 313e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.334813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.334813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.334813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.334813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.334813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.334814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.334814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.334814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.334814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.334814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.344818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.344818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.344818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.344818 LLDP, length 82 [|LLDP] 17:37:53.344818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.344818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d09 d25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.344818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.344818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.344818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.344818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.344818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.344818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.344819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.344819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.344819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.354814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.354814 LLDP, length 82 [|LLDP] 17:37:53.354814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.354814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d11 737e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.354814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.354814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.354814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.354814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.354814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.354814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.354815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.354815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.354815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.354815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.364813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.364813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.364813 LLDP, length 82 [|LLDP] 17:37:53.364813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.364813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d19 149e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.364813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.364813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.364813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.364813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.364813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.364813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.374804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.374804 LLDP, length 82 [|LLDP] 17:37:53.374804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.374804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d20 b5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.374804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.374804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.374804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.384809 LLDP, length 82 [|LLDP] 17:37:53.384809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.384809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d28 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.384809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.384809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.384809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.384810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.384810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.394806 LLDP, length 82 [|LLDP] 17:37:53.394806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.394806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2f f7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.394806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.394806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.394806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.394806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.394806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.394806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.404837 LLDP, length 82 [|LLDP] 17:37:53.404837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.404838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d37 991e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.404838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.404838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.404838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.404838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.404838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.404838 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.404838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.404838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.404838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.404838 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.414823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.414823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.414823 LLDP, length 82 [|LLDP] 17:37:53.414823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.414823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d3f 3a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.414823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.414823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.414824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.414824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.414824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.414824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.414824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.414824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.414824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.414824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.424820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.424821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.424821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.424821 LLDP, length 82 [|LLDP] 17:37:53.424821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.424821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d46 db5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.424821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.424821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.424821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.424821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.424821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.424821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.424821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.434825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.434825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.434825 LLDP, length 82 [|LLDP] 17:37:53.434825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.434825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d4e 7c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.434825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.434825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.434825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.434825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.434825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.434825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.434825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.434826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.434826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.434826 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.444822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.444822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.444822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.444822 LLDP, length 82 [|LLDP] 17:37:53.444823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.444823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d56 1d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.444823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.444823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.444823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.444823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.444823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.444823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.444823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.454820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.454820 LLDP, length 82 [|LLDP] 17:37:53.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5d bebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.454821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.454821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.454821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.454821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.464815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.464815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.464815 LLDP, length 82 [|LLDP] 17:37:53.464815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.464815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d65 5fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.464815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.464815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.464815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.464815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.464816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.464816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.464816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.474806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.474806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.474806 LLDP, length 82 [|LLDP] 17:37:53.474806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.474806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6d 00fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.474806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.474806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.474806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.474806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.484815 LLDP, length 82 [|LLDP] 17:37:53.484815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.484815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d74 a21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.484815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.484815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.484815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.484815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.484815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.484815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.494813 LLDP, length 82 [|LLDP] 17:37:53.494813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.494813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7c 433e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.494813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.494813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.494813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.494813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.494813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.494813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.504824 LLDP, length 82 [|LLDP] 17:37:53.504824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.504824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d83 e45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.504824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.504824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.504824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.504824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.504824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.504824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.504825 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.504825 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.504825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.504825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.504825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.504825 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.514816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.514816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.514816 LLDP, length 82 [|LLDP] 17:37:53.514816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.514816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8b 857e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.514816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.514816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.514816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.514817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.514817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.514817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.514817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.514817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.514817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.514817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.524816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.524816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.524816 LLDP, length 82 [|LLDP] 17:37:53.524816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.524816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d93 269e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.524816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.524817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.524817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.524817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.524817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.524817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.524817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.534815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.534815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.534816 LLDP, length 82 [|LLDP] 17:37:53.534816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.534816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9a c7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.534816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.534816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.534816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.534816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.534816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.534816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.534816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.534816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.544815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.544815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.544815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.544816 LLDP, length 82 [|LLDP] 17:37:53.544816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.544816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da2 68de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.544816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.544816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.544816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.544816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.544816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.544816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.544816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.554816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.554816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.554816 LLDP, length 82 [|LLDP] 17:37:53.554816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.554816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0daa 09fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.554816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.554816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.554816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.554817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.554817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.554817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.554817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.554817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.554817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.554817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.564812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.564812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.564813 LLDP, length 82 [|LLDP] 17:37:53.564813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.564813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db1 ab1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.564813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.564813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.564813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.564813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.564813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.564813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.564813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.574805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.574805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.574805 LLDP, length 82 [|LLDP] 17:37:53.574805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.574805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db9 4c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.574806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.574806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.574806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.574806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.584806 LLDP, length 82 [|LLDP] 17:37:53.584807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.584807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc0 ed5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.584807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.584807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.584807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.584807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.584807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.594806 LLDP, length 82 [|LLDP] 17:37:53.594806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.594806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc8 8e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.594806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.594806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.594806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.594807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.594807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.604820 LLDP, length 82 [|LLDP] 17:37:53.604820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.604820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd0 2f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.604820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.604820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.604820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.604820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.604820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.604820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.604820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.604821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.604821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.604821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.604821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.604821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.614815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.614815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.614815 LLDP, length 82 [|LLDP] 17:37:53.614816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.614816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd7 d0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.614816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.614816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.614816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.614816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.614816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.614816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.614816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.614816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.624816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.624816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.624817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.624817 LLDP, length 82 [|LLDP] 17:37:53.624817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.624817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ddf 71de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.624817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.624817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.624817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.624817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.624817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.624817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.624817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.634816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.634816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.634816 LLDP, length 82 [|LLDP] 17:37:53.634816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.634816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de7 12fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.634816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.634816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.634817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.634817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.634817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.634817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.634817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.634817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.634817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.634817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.644813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.644813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.644813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.644813 LLDP, length 82 [|LLDP] 17:37:53.644813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.644813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dee b41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.644813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.644813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.644813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.644813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.644814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.644814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.644814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.644814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.644814 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.654823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.654823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.654823 LLDP, length 82 [|LLDP] 17:37:53.654824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.654824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df6 553e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.654824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.654824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.654824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.654824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.654824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.654824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.654824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.654824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.664812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.664812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.664812 LLDP, length 82 [|LLDP] 17:37:53.664812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.664812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dfd f65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.664812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.664812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.664812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.664812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.664813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.664813 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.664813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.674806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.674806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.674806 LLDP, length 82 [|LLDP] 17:37:53.674806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.674806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e05 977e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.674807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.674807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.674807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.674807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.684807 LLDP, length 82 [|LLDP] 17:37:53.684807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.684807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0d 389e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.684807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.684807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.684807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.684807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.684807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.684807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.694806 LLDP, length 82 [|LLDP] 17:37:53.694806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.694806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e14 d9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.694806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.694806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.694806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.694806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.694807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.694807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.704821 LLDP, length 82 [|LLDP] 17:37:53.704821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.704821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1c 7ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.704821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.704821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.704821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.704821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.704821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.704821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.704821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.704821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.704821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.704822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.704822 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.714817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.714817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.714817 LLDP, length 82 [|LLDP] 17:37:53.714817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.714817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e24 1bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.714817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.714818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.714818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.714818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.714818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.714818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.714818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.714818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.724814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.724814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.724814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.724814 LLDP, length 82 [|LLDP] 17:37:53.724814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.724814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2b bd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.724815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.724815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.724815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.724815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.724815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.724815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.724815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.734816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.734816 LLDP, length 82 [|LLDP] 17:37:53.734816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.734816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e33 5e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.734816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.734816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.734816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.734816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.734816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.734816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.734816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.734816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.734817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.744816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.744816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.744817 LLDP, length 82 [|LLDP] 17:37:53.744817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.744817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3a ff5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.744817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.744817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.744817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.744817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.744817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.744817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.744817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.754818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.754818 LLDP, length 82 [|LLDP] 17:37:53.754818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.754818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e42 a07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.754818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.754818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.754818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.754818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.754818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.754818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.754818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.754818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.754819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.764813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.764813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.764814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.764814 LLDP, length 82 [|LLDP] 17:37:53.764814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.764814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4a 419e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.764814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.764814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.764814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.764814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.764814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.764814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.764814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.774806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.774806 LLDP, length 82 [|LLDP] 17:37:53.774806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.774806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e51 e2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.774806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.774806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.774806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.774807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.784806 LLDP, length 82 [|LLDP] 17:37:53.784806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.784806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e59 83de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.784806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.784806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.784806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.784806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.784806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.794805 LLDP, length 82 [|LLDP] 17:37:53.794805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.794805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e61 24fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.794805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.794805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.794805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.794805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.794805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.794805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.804819 LLDP, length 82 [|LLDP] 17:37:53.804819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.804819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e68 c61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.804819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.804819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.804819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.804819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.804819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.804819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.804819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.804819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.804819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.804820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.804820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.804820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.814818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.814818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.814818 LLDP, length 82 [|LLDP] 17:37:53.814818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.814818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e70 673e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.814818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.814818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.814818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.814818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.814818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.814818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.814818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.814819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.814819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.814819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.824817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.824817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.824817 LLDP, length 82 [|LLDP] 17:37:53.824817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.824817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e78 085e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.824817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.824817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.824817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.824817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.824818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.824818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.824818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.824818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.824818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.834814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.834814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.834814 LLDP, length 82 [|LLDP] 17:37:53.834814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.834814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7f a97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.834814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.834815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.834815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.834815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.834815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.834815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.834815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.834815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.844814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.844814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.844815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.844815 LLDP, length 82 [|LLDP] 17:37:53.844815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.844815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e87 4a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.844815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.844815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.844815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.844815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.844815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.844815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.844815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.854815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.854815 LLDP, length 82 [|LLDP] 17:37:53.854815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.854815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e8e ebbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.854815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.854815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.854815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.854815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.854815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.854815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.854815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.864812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.864812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.864812 LLDP, length 82 [|LLDP] 17:37:53.864812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.864812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e96 8cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.864812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.864812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.864812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.864812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.864812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.864812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.874807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.874807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.874807 LLDP, length 82 [|LLDP] 17:37:53.874807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.874807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e9e 2dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.874808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.874808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.874808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.874808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.884804 LLDP, length 82 [|LLDP] 17:37:53.884804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.884804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea5 cf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.884804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.884804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.884804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.884805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.884805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.884805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.894805 LLDP, length 82 [|LLDP] 17:37:53.894805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.894805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ead 703e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.894805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.894805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.894805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.894805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.894805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.894805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.904822 LLDP, length 82 [|LLDP] 17:37:53.904822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.904822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb5 115e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.904822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.904822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.904822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.904822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.904822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.904823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.904823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.904823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.904823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.904823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.904823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.904823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.914817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.914818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.914818 LLDP, length 82 [|LLDP] 17:37:53.914818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.914818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebc b27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.914818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.914818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.914818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.914818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.914818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.914818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.914818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.914818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.924818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.924818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.924818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.924818 LLDP, length 82 [|LLDP] 17:37:53.924818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.924818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec4 539e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.924818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.924818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.924818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.924818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.924819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.924819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.924819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.924819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.924819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.934815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.934815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.934815 LLDP, length 82 [|LLDP] 17:37:53.934815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.934815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecb f4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.934815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.934815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.934816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.934816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.934816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.934816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.934816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.934816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.934816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.934816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.944815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.944815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.944815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.944815 LLDP, length 82 [|LLDP] 17:37:53.944815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.944815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed3 95de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.944815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.944816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.944816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.944816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.944816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.944816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.944816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.954820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.954820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.954820 LLDP, length 82 [|LLDP] 17:37:53.954820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.954821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edb 36fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.954821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.954821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.954821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.954821 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.954821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.954821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.954821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:53.954821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:53.964813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.964813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.964813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.964813 LLDP, length 82 [|LLDP] 17:37:53.964813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.964813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee2 d81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.964813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.964813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:53.964813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.964813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.964813 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.964814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:53.964814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:53.974807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.974807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.974807 LLDP, length 82 [|LLDP] 17:37:53.974807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.974807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eea 793e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.974807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.974807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.974807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.974807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.984806 LLDP, length 82 [|LLDP] 17:37:53.984806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.984806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef2 1a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.984806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.984806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.984806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.984806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.984807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.984807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:53.994807 LLDP, length 82 [|LLDP] 17:37:53.994807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:53.994807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef9 bb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:53.994807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:53.994807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:53.994807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:53.994807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.994807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:53.994807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.004818 LLDP, length 82 [|LLDP] 17:37:54.004818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.004818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f01 5c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.004818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.004818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.004818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.004818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.004818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.004819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.004819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.004819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.004819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.004819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.004819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.014815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.014815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.014815 LLDP, length 82 [|LLDP] 17:37:54.014815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.014815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f08 fdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.014816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.014816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.014816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.014816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.014816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.014827 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.014827 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.014827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.014827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.014827 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.024820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.024820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.024820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.024820 LLDP, length 82 [|LLDP] 17:37:54.024820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.024820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f10 9ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.024820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.024820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.024820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.024820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.024820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.024821 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.024821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.024821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.024821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.034815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.034815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.034815 LLDP, length 82 [|LLDP] 17:37:54.034815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.034815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f18 3ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.034815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.034816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.034816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.034816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.034816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.034816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.034816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.034816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.044814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.044814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.044814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.044814 LLDP, length 82 [|LLDP] 17:37:54.044814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.044814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1f e11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.044814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.044814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.044814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.044814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.044814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.044815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.044815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.044815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.044815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.054815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.054815 LLDP, length 82 [|LLDP] 17:37:54.054815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.054815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f27 823e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.054815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.054815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.054815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.054815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.054815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.054816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.054816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.054816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.054816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.054816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.064815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.064815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.064815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.064816 LLDP, length 82 [|LLDP] 17:37:54.064816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.064816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f2f 235e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.064816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.064816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.064816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.064816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.064816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.064816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.064816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.074807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.074807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.074807 LLDP, length 82 [|LLDP] 17:37:54.074807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.074807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f36 c47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.074807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.074807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.074807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.074807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.084806 LLDP, length 82 [|LLDP] 17:37:54.084806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.084806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f3e 659e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.084806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.084806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.084806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.084807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.084807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.084807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.094806 LLDP, length 82 [|LLDP] 17:37:54.094806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.094806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f46 06be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.094806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.094806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.094806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.094806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.094806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.094806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.104818 LLDP, length 82 [|LLDP] 17:37:54.104818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.104818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4d a7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.104818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.104818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.104818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.104818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.104818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.104818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.104818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.104818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.104819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.104819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.104819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.104819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.114817 LLDP, length 82 [|LLDP] 17:37:54.114817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.114817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f55 48fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.114817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.114817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.114817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.114817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.114817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.114817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.114817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.114818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.114818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.124817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.124817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.124817 LLDP, length 82 [|LLDP] 17:37:54.124817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.124818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5c ea1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.124818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.124818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.124818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.124818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.124818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.124818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.124818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.134820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.134820 LLDP, length 82 [|LLDP] 17:37:54.134820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.134820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f64 8b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.134820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.134820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.134820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.134820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.134820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.134820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.134820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.134821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.134821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.144816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.144816 LLDP, length 82 [|LLDP] 17:37:54.144816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.144816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6c 2c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.144816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.144816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.144816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.144816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.144816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.144816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.144817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.144817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.154815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.154815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.154815 LLDP, length 82 [|LLDP] 17:37:54.154815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.154815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f73 cd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.154815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.154815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.154815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.154815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.154815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.154815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.154816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.154816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.154816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.154816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.164814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.164814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.164814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.164814 LLDP, length 82 [|LLDP] 17:37:54.164814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.164814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7b 6e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.164814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.164814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.164815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.164815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.164815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.164815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.164815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.174806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.174806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.174806 LLDP, length 82 [|LLDP] 17:37:54.174806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.174806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f83 0fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.174806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.174806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.174807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.174807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.184806 LLDP, length 82 [|LLDP] 17:37:54.184806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.184806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8a b0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.184806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.184806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.184806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.184806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.184806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.194806 LLDP, length 82 [|LLDP] 17:37:54.194806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.194806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f92 51fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.194806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.194806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.194806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.194806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.194806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.194806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.204818 LLDP, length 82 [|LLDP] 17:37:54.204818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.204818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f99 f31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.204818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.204818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.204818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.204819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.204819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.204819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.204819 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.204819 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.204819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.204819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.204819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.204819 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.214814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.214814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.214814 LLDP, length 82 [|LLDP] 17:37:54.214815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.214815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa1 943e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.214815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.214815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.214815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.214815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.214815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.214815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.214815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.214815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.224816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.224816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.224816 LLDP, length 82 [|LLDP] 17:37:54.224816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.224817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa9 355e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.224817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.224817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.224817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.224817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.224817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.224817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.224817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.234822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.234822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.234822 LLDP, length 82 [|LLDP] 17:37:54.234822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.234822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb0 d67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.234822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.234822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.234823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.234823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.234823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.234823 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.234823 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.234823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.234823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.234823 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.244817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.244817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.244817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.244817 LLDP, length 82 [|LLDP] 17:37:54.244817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.244817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb8 779e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.244818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.244818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.244818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.244818 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.244818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.244818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.244818 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.254815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.254815 LLDP, length 82 [|LLDP] 17:37:54.254815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.254815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc0 18be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.254815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.254815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.254815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.254815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.254815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.254815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.254815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.254816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.254816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.254816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.264814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.264814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.264814 LLDP, length 82 [|LLDP] 17:37:54.264814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.264814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc7 b9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.264814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.264814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.264814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.264814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.264814 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.264814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.274806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.274806 LLDP, length 82 [|LLDP] 17:37:54.274806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.274806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fcf 5afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.274806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.274806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.274806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.274806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.284806 LLDP, length 82 [|LLDP] 17:37:54.284806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.284806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd6 fc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.284806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.284806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.284806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.284806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.284806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.284807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.294806 LLDP, length 82 [|LLDP] 17:37:54.294807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.294807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fde 9d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.294807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.294807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.294807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.294807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.294807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.294807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.304816 LLDP, length 82 [|LLDP] 17:37:54.304816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.304817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe6 3e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.304817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.304817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.304817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.304817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.304817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.304817 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.304817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.304817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.304817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.304817 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.314814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.314814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.314814 LLDP, length 82 [|LLDP] 17:37:54.314814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.314814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fed df7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.314815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.314815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.314815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.314815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.314815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.314815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.314815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.314815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.324814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.324815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.324815 LLDP, length 82 [|LLDP] 17:37:54.324815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.324815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff5 809e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.324815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.324815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.324815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.324815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.324815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.324815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.324815 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.334815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.334820 LLDP, length 82 [|LLDP] 17:37:54.334820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.334820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ffd 21be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.334820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.334820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.334820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.334820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.334820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.334820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.334820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.334820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.344815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.344815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.344815 LLDP, length 82 [|LLDP] 17:37:54.344815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.344816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1004 c2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.344816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.344816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.344816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.344816 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.344816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.344816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.344816 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.353147 IP6 fe80::36ef:b6ff:feec:2a51 > ff02::2: ICMP6, router solicitation, length 16 17:37:54.354811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.354811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.354811 LLDP, length 82 [|LLDP] 17:37:54.354811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.354811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100c 63fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.354811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.354811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.354811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.354811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.354811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.354812 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.354812 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.354812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.354812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.354812 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.364814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.364814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.364814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.364814 LLDP, length 82 [|LLDP] 17:37:54.364814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.364814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1014 051e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.364814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.364814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.364815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.364815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.364815 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.364815 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.364815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.374827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.374827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.374827 LLDP, length 82 [|LLDP] 17:37:54.374828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.374828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101b a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.374828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.374828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.374828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.374828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.384810 LLDP, length 82 [|LLDP] 17:37:54.384810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.384810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1023 475e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.384810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.384810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.384810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.384811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.384811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.394840 LLDP, length 82 [|LLDP] 17:37:54.394840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.394841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102a e87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.394841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.394841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.394841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.394841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.394841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.394841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.404849 LLDP, length 82 [|LLDP] 17:37:54.404849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.404849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1032 899e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.404849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.404849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.404849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.404849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.404849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.404849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.404849 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.404850 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.404850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.404850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.404850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.404850 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.414841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.414841 LLDP, length 82 [|LLDP] 17:37:54.414841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.414841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103a 2abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.414841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.414841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.414841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.414841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.414841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.414841 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.414841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.414841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.414842 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.424819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.424819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.424819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.424819 LLDP, length 82 [|LLDP] 17:37:54.424819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.424819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1041 cbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.424820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.424820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.424820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.424820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.424820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.424820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.424820 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.434832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.434832 LLDP, length 82 [|LLDP] 17:37:54.434832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.434832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1049 6cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.434832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.434832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.434832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.434832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.434832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.434832 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.434832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.434833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.434833 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.444823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.444823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.444823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.444823 LLDP, length 82 [|LLDP] 17:37:54.444823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.444823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1051 0e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.444823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.444824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.444824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.444824 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.444824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.444824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.444824 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:37:54.454819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:37:54.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.454820 LLDP, length 82 [|LLDP] 17:37:54.454820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:37:54.454820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1058 af3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:37:54.454820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:37:54.454820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:37:54.454820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:37:54.454820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:37:54.454820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:37:54.454820 IP 1.1.1.2.47640 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.454820 IP 192.168.1.1.20047 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:37:54.454821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:37:54.454821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:37:54.454821 IP 1.1.1.2.34696 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5727 packets captured 5727 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:38:03 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:38:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:38:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG agg2:Logger.py:156 []
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding 143.87
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2338' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.2, port 51336 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:38:05 PM UTC INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:10' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a001f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:9 TI streamA SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:9 TI streamB SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:83:64:74","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:40:28 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:40:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":228,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets 188.48
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2366' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.2, port 57566 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:40:28 PM UTC INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a002e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Broadcast SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_Reserved_MC SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_OSPFIGP SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_VRRP SIP-DIP N/A Tx 438 Rx 438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI IPv4_IGMP SIP-DIP N/A Tx 438 Rx 438 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:43:36 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:43:36 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":229,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down 117.87
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2390' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.2, port 42432 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:43:37 PM UTC INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a028f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI bridge SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:04:9b:a8","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:04:9b:a8","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:45:34 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:45:34 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":230,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster 193.71
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2422' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.2, port 45640 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:45:35 PM UTC INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2584e080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI bridge_2 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI bridge_3 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI bridge_4 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:48:48 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:48:48 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":231,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic 229.63
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2452' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.2, port 59542 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:48:49 PM UTC INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0f5e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 4373 Rx 4373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 4373 Rx 4373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 4373 Rx 4373 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a02d10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 8028 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 8028 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 8028 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2584da50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 8026 Rx 8026 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 8026 Rx 8026 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 8026 Rx 8026 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:52:37 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:52:38 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":232,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs 152.15
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2480' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.2, port 52946 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:52:38 PM UTC INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0f490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI bridge SIP-DIP N/A Tx 239 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f1:b3:02","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:55:10 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:55:10 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":233,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic 219.80
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2508' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.2, port 38782 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:55:10 PM UTC INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a03580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 66598 Rx 66598 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG agg2:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0ef50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 66167 Rx 66167 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG agg2:Logger.py:156 16002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:58:49 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:58:49 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":234,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_frame_max_size 198.80
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2536' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_frame_max_size">Starting testcase:test_bridging_frame_max_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.2, port 42310 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:58:50 PM UTC INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 05:58:50 PM UTC INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 9000 master br0 && ip link set dev swp2 mtu 9000 master br0 && ip link set dev swp3 mtu 9000 master br0 && ip link set dev swp4 mtu 9000 master br0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: ip link set dev swp1 mtu 9000 master br0 && ip link set dev swp2 mtu 9000 master br0 && ip link set dev swp3 mtu 9000 master br0 && ip link set dev swp4 mtu 9000 master br0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b1840>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI bridge_2 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI bridge_3 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI bridge_4 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ed:ec:ec","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_frame_max_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:02:08 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:02:08 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":235,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=28] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_min_size 200.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2576' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_min_size">Starting testcase:test_bridging_jumbo_frame_min_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.2, port 47970 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:02:09 PM UTC INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:02:09 PM UTC INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 1510 master br0 && ip link set dev swp2 mtu 1510 master br0 && ip link set dev swp3 mtu 1510 master br0 && ip link set dev swp4 mtu 1510 master br0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: ip link set dev swp1 mtu 1510 master br0 && ip link set dev swp2 mtu 1510 master br0 && ip link set dev swp3 mtu 1510 master br0 && ip link set dev swp4 mtu 1510 master br0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259dbe80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 343 Rx 342 Frames Delta 1 Loss 0.292 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 343 Rx 342 Frames Delta 1 Loss 0.292 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 343 Rx 342 Frames Delta 1 Loss 0.292 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 343 Rx 342 Frames Delta 1 Loss 0.292 INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:6e:fa:91","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_min_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:05:29 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:05:29 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":236,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=26] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_value_out_of_bounds 193.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2614' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_value_out_of_bounds">Starting testcase:test_bridging_jumbo_frame_value_out_of_bounds from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.2, port 37086 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:05:30 PM UTC INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:05:30 PM UTC INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 9001 master br0 && ip link set dev swp2 mtu 9001 master br0 && ip link set dev swp3 mtu 9001 master br0 && ip link set dev swp4 mtu 9001 master br0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: ip link set dev swp1 mtu 9001 master br0 && ip link set dev swp2 mtu 9001 master br0 && ip link set dev swp3 mtu 9001 master br0 && ip link set dev swp4 mtu 9001 master br0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 2 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG agg2:Logger.py:156 Error: mtu greater than device maximum. INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a02020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 343 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI bridge_2 SIP-DIP N/A Tx 343 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI bridge_3 SIP-DIP N/A Tx 343 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI bridge_4 SIP-DIP N/A Tx 343 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f3:10:25","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_value_out_of_bounds from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:08:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:08:42 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":237,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=26] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address 212.95
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2652' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.2, port 60826 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:08:43 PM UTC INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b08e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 338 Rx 337 Frames Delta 1 Loss 0.296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 338 Rx 337 Frames Delta 1 Loss 0.296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 338 Rx 337 Frames Delta 1 Loss 0.296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 338 Rx 337 Frames Delta 1 Loss 0.296 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:03:ce:d4","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:12:15 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:12:15 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":238,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate 175.30
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2680' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.2, port 56020 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:12:16 PM UTC INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:12' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0c850>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 3384 Rx 3384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:9 TI streamB SIP-DIP N/A Tx 3384 Rx 3384 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:15:10 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:15:11 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":239,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address 201.50
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2704' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.2, port 39800 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:15:11 PM UTC INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a00310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI all_zeros SIP-DIP N/A Tx 345 Rx 345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI broadcast SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI multicast_1 SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI multicast_2 SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:47:a3:44","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:18:32 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:18:32 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":240,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans 403.50
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2732' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.2, port 60156 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:18:33 PM UTC INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259dbb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 253 Rx 253 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 253 Rx 253 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:bb:60:6c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b11e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 244 Rx 244 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 244 Rx 244 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:bb:60:6c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259677c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 243 Rx 243 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 243 Rx 243 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=19] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=20] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:bb:60:6c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=59, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=21] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=59, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=22] Command: bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=59, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=22] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:25:15 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:25:16 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=28] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":241,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=29] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=30] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_mac_table_size.py::test_bridging_mac_table_size 151.49
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2772' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.2, port 34030 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:25:16 PM UTC INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:11' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26100bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamA Tx 4413 Rx 4413 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG agg2:Logger.py:156 4002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:27:47 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:27:47 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":242,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize 205.89
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2800' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.2, port 42712 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:27:48 PM UTC INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 1365291651346 bad_octets_received: 24423184 mac_trans_error: 0 broadcast_frames_received: 92255238 multicast_frames_received: 125963999 frames_64_octets: 2444 frames_65_to_127_octets: 933406 frames_128_to_255_octets: 800083341 frames_256_to_511_octets: 1819505638 frames_512_to_1023_octets: 683385042 frames_1024_to_max_octets: 160686925 excessive_collision: 0 multicast_frames_sent: 2317 broadcast_frames_sent: 737 fc_sent: 0 fc_received: 0 buffer_overrun: 3083 undersize: 13064 fragments: 0 oversize: 13728 jabber: 0 rx_error_frame_received: 0 bad_crc: 5413 collisions: 0 late_collision: 0 unicast_frames_received: 3239693297 unicast_frames_sent: 6675795 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3421899488 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 308463473883 bad_octets_received: 24172816 mac_trans_error: 0 broadcast_frames_received: 16598245 multicast_frames_received: 90901260 frames_64_octets: 2378 frames_65_to_127_octets: 25336 frames_128_to_255_octets: 212266075 frames_256_to_511_octets: 476642418 frames_512_to_1023_octets: 170810093 frames_1024_to_max_octets: 38397242 excessive_collision: 0 multicast_frames_sent: 6246810 broadcast_frames_sent: 6241154 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 13728 jabber: 0 rx_error_frame_received: 0 bad_crc: 4924 collisions: 0 late_collision: 0 unicast_frames_received: 758426788 unicast_frames_sent: 19724361 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 18989488478 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 179814306903 bad_octets_received: 21651728 mac_trans_error: 0 broadcast_frames_received: 40623272 multicast_frames_received: 54580394 frames_64_octets: 1343 frames_65_to_127_octets: 15510 frames_128_to_255_octets: 10409994 frames_256_to_511_octets: 254552204 frames_512_to_1023_octets: 85658344 frames_1024_to_max_octets: 33295831 excessive_collision: 0 multicast_frames_sent: 13866 broadcast_frames_sent: 4282 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 13728 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 288493062 unicast_frames_sent: 218350 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117220018 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 137225656506 bad_octets_received: 21651728 mac_trans_error: 0 broadcast_frames_received: 32130745 multicast_frames_received: 32128445 frames_64_octets: 1168 frames_65_to_127_octets: 301 frames_128_to_255_octets: 51525684 frames_256_to_511_octets: 249418699 frames_512_to_1023_octets: 14819758 frames_1024_to_max_octets: 38161219 excessive_collision: 0 multicast_frames_sent: 1427 broadcast_frames_sent: 1408 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 13728 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 289612337 unicast_frames_sent: 52467 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 30945197 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 1365291651346 bad_octets_received: 44333988 mac_trans_error: 0 broadcast_frames_received: 92255238 multicast_frames_received: 125963999 frames_64_octets: 2444 frames_65_to_127_octets: 933406 frames_128_to_255_octets: 800083341 frames_256_to_511_octets: 1819505638 frames_512_to_1023_octets: 683385042 frames_1024_to_max_octets: 160686925 excessive_collision: 0 multicast_frames_sent: 2317 broadcast_frames_sent: 737 fc_sent: 0 fc_received: 0 buffer_overrun: 3083 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 5413 collisions: 0 late_collision: 0 unicast_frames_received: 3239693297 unicast_frames_sent: 6675795 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3421899488 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 308463473883 bad_octets_received: 44083620 mac_trans_error: 0 broadcast_frames_received: 16598245 multicast_frames_received: 90901260 frames_64_octets: 2378 frames_65_to_127_octets: 25336 frames_128_to_255_octets: 212266075 frames_256_to_511_octets: 476642418 frames_512_to_1023_octets: 170810093 frames_1024_to_max_octets: 38397242 excessive_collision: 0 multicast_frames_sent: 6246810 broadcast_frames_sent: 6241154 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 4924 collisions: 0 late_collision: 0 unicast_frames_received: 758426788 unicast_frames_sent: 19724361 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 18989488478 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 179814306903 bad_octets_received: 41562532 mac_trans_error: 0 broadcast_frames_received: 40623272 multicast_frames_received: 54580394 frames_64_octets: 1343 frames_65_to_127_octets: 15510 frames_128_to_255_octets: 10409995 frames_256_to_511_octets: 254552204 frames_512_to_1023_octets: 85658344 frames_1024_to_max_octets: 33295831 excessive_collision: 0 multicast_frames_sent: 13867 broadcast_frames_sent: 4282 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 288493062 unicast_frames_sent: 218350 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117220255 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 137225656506 bad_octets_received: 41562532 mac_trans_error: 0 broadcast_frames_received: 32130745 multicast_frames_received: 32128445 frames_64_octets: 1168 frames_65_to_127_octets: 301 frames_128_to_255_octets: 51525685 frames_256_to_511_octets: 249418699 frames_512_to_1023_octets: 14819758 frames_1024_to_max_octets: 38161219 excessive_collision: 0 multicast_frames_sent: 1428 broadcast_frames_sent: 1408 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 289612337 unicast_frames_sent: 52467 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 30945434 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259dbc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13082 Rx 0 Frames Delta 13082 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13082 Rx 0 Frames Delta 13082 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13082 Rx 0 Frames Delta 13082 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13082 Rx 0 Frames Delta 13082 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1f:b0:d5","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:31:13 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:31:13 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":243,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize 210.51
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2844' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.2, port 49664 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:31:14 PM UTC INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 1365291651858 bad_octets_received: 44333988 mac_trans_error: 0 broadcast_frames_received: 92255246 multicast_frames_received: 125963999 frames_64_octets: 2477 frames_65_to_127_octets: 933423 frames_128_to_255_octets: 800083348 frames_256_to_511_octets: 1819505638 frames_512_to_1023_octets: 683385042 frames_1024_to_max_octets: 160686925 excessive_collision: 0 multicast_frames_sent: 2342 broadcast_frames_sent: 761 fc_sent: 0 fc_received: 0 buffer_overrun: 3083 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 5413 collisions: 0 late_collision: 0 unicast_frames_received: 3239693297 unicast_frames_sent: 6675795 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3421904361 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 308463474395 bad_octets_received: 44083620 mac_trans_error: 0 broadcast_frames_received: 16598253 multicast_frames_received: 90901260 frames_64_octets: 2411 frames_65_to_127_octets: 25352 frames_128_to_255_octets: 212266081 frames_256_to_511_octets: 476642418 frames_512_to_1023_octets: 170810093 frames_1024_to_max_octets: 38397242 excessive_collision: 0 multicast_frames_sent: 6246833 broadcast_frames_sent: 6241178 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 4924 collisions: 0 late_collision: 0 unicast_frames_received: 758426788 unicast_frames_sent: 19724361 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 18989492980 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 179814307415 bad_octets_received: 41562532 mac_trans_error: 0 broadcast_frames_received: 40623280 multicast_frames_received: 54580394 frames_64_octets: 1376 frames_65_to_127_octets: 15524 frames_128_to_255_octets: 10410001 frames_256_to_511_octets: 254552204 frames_512_to_1023_octets: 85658344 frames_1024_to_max_octets: 33295831 excessive_collision: 0 multicast_frames_sent: 13888 broadcast_frames_sent: 4306 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 288493062 unicast_frames_sent: 218350 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117224589 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 137225657018 bad_octets_received: 41562532 mac_trans_error: 0 broadcast_frames_received: 32130753 multicast_frames_received: 32128445 frames_64_octets: 1201 frames_65_to_127_octets: 315 frames_128_to_255_octets: 51525690 frames_256_to_511_octets: 249418699 frames_512_to_1023_octets: 14819758 frames_1024_to_max_octets: 38161219 excessive_collision: 0 multicast_frames_sent: 1448 broadcast_frames_sent: 1432 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13064 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 289612337 unicast_frames_sent: 52467 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 30949531 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 1365291651858 bad_octets_received: 45090308 mac_trans_error: 0 broadcast_frames_received: 92255246 multicast_frames_received: 125963999 frames_64_octets: 2477 frames_65_to_127_octets: 933423 frames_128_to_255_octets: 800083348 frames_256_to_511_octets: 1819505638 frames_512_to_1023_octets: 683385042 frames_1024_to_max_octets: 160686925 excessive_collision: 0 multicast_frames_sent: 2342 broadcast_frames_sent: 761 fc_sent: 0 fc_received: 0 buffer_overrun: 3083 undersize: 26104 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 5413 collisions: 0 late_collision: 0 unicast_frames_received: 3239693297 unicast_frames_sent: 6675795 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3421904361 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 308463474395 bad_octets_received: 44839940 mac_trans_error: 0 broadcast_frames_received: 16598253 multicast_frames_received: 90901260 frames_64_octets: 2411 frames_65_to_127_octets: 25352 frames_128_to_255_octets: 212266082 frames_256_to_511_octets: 476642418 frames_512_to_1023_octets: 170810093 frames_1024_to_max_octets: 38397242 excessive_collision: 0 multicast_frames_sent: 6246834 broadcast_frames_sent: 6241178 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 26104 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 4924 collisions: 0 late_collision: 0 unicast_frames_received: 758426788 unicast_frames_sent: 19724361 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 18989493217 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 179814307415 bad_octets_received: 42318852 mac_trans_error: 0 broadcast_frames_received: 40623280 multicast_frames_received: 54580394 frames_64_octets: 1376 frames_65_to_127_octets: 15524 frames_128_to_255_octets: 10410002 frames_256_to_511_octets: 254552204 frames_512_to_1023_octets: 85658344 frames_1024_to_max_octets: 33295831 excessive_collision: 0 multicast_frames_sent: 13889 broadcast_frames_sent: 4306 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 26104 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 288493062 unicast_frames_sent: 218350 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117224826 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG agg2:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG agg2:Logger.py:156 NIC statistics: good_octets_received: 137225657018 bad_octets_received: 42318852 mac_trans_error: 0 broadcast_frames_received: 32130753 multicast_frames_received: 32128445 frames_64_octets: 1201 frames_65_to_127_octets: 315 frames_128_to_255_octets: 51525691 frames_256_to_511_octets: 249418699 frames_512_to_1023_octets: 14819758 frames_1024_to_max_octets: 38161219 excessive_collision: 0 multicast_frames_sent: 1449 broadcast_frames_sent: 1432 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 26104 fragments: 0 oversize: 26810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 289612337 unicast_frames_sent: 52467 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 30949768 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259b1540>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13040 Rx 0 Frames Delta 13040 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13040 Rx 0 Frames Delta 13040 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13040 Rx 0 Frames Delta 13040 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13040 Rx 0 Frames Delta 13040 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:06:fe:61","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:34:43 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:34:43 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":244,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan 175.07
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2888' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.2, port 56020 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:34:44 PM UTC INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:4e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:51","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:51","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:52","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:52","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:53","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:53","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:2a:54","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:2a:54","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:68:f3:3a","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG agg2:Logger.py:156 bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:12' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26101a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:37:38 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:37:39 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":245,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs 804.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2924' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.2, port 38848 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:37:39 PM UTC INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25966b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 65766 Rx 65766 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0cee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66288 Rx 66288 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66288 Rx 66288 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2621c370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66431 Rx 66431 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66431 Rx 66431 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 66431 Rx 66431 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2621feb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67403 Rx 67403 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67403 Rx 67403 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67403 Rx 67403 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67403 Rx 67403 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a2621c370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66764 Rx 66764 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66764 Rx 66764 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 66764 Rx 66764 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 66764 Rx 66764 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 66764 Rx 66764 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26103490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 66039 Rx 66039 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG agg2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26102e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 65842 Rx 65842 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG agg2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG agg2:Logger.py:156 16004
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:51:02 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:51:02 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":246,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries 192.97
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2962' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.2, port 50432 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:51:03 PM UTC INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a26177d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:12 Rx 10.36.118.199:1:9 TI bridge_1 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:11 Rx 10.36.118.199:1:10 TI bridge_2 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:10 Rx 10.36.118.199:1:11 TI bridge_3 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI bridge_4 SIP-DIP N/A Tx 337 Rx 337 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:54:15 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:54:16 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":247,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 193.08
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2990' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.2, port 48514 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:54:16 PM UTC INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG agg2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG agg2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25966020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 132053 Rx 132053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 132053 Rx 132053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 132053 Rx 132053 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25964220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 240603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 240603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 240603 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG agg2:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25964160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:10 TI streamA SIP-DIP N/A Tx 240877 Rx 240877 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:11 TI streamB SIP-DIP N/A Tx 240877 Rx 240877 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:9 Rx 10.36.118.199:1:12 TI streamC SIP-DIP N/A Tx 240877 Rx 240877 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:57:28 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 06:57:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":248,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG agg2:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps 216.17
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3042' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.2, port 56408 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:00:22 PM UTC INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG agg2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG agg2:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:00:22 PM UTC INFO DENT:Logger.py:84 [DENT aggregation 2] policer rate: 1087Kbps, traffic frame size: 766, expected trap rate: 1420.0pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 227 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 && tc filter add dev swp1 ingress protocol 0x0800 pref 454 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action drop INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 227 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 && tc filter add dev swp1 ingress protocol 0x0800 pref 454 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action drop INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:44:72:2a:72:2a","src_mac":"02:7d:3d:d9:f2:c4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"110.17.61.243","src_ip":"110.179.23.13","dst_port":6907,"src_port":3912},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:44:72:2a:72:2a_src_mac_02:7d:3d:d9:f2:c4_eth_type_ipv4_ip_proto_udp_dst_ip_110.17.61.243_src_ip_110.179.23.13_dst_port_6907_src_port_3912 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG agg2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG agg2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG agg2:Logger.py:156 1429 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG agg2:Logger.py:156 1433 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25a0e620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:44:72:2a:72:2a_src_mac_02:7d:3d:d9:f2:c4_eth_type_ipv4_ip_proto_udp_dst_ip_110.17.61.243_src_ip_110.179.23.13_dst_port_6907_src_port_3912 Tx 31785726 Rx 28409 Frames Delta 31757317 Loss 99.911 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: tc filter delete dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 227 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 227 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG agg2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session DEBUG agg2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG agg2:Logger.py:156 1429 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG agg2:Logger.py:156 1433 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a259da050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:44:72:2a:72:2a_src_mac_02:7d:3d:d9:f2:c4_eth_type_ipv4_ip_proto_udp_dst_ip_110.17.61.243_src_ip_110.179.23.13_dst_port_6907_src_port_3912 Tx 38146138 Rx 34091 Frames Delta 38112047 Loss 99.911 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc filter delete dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc filter delete dev swp1 ingress pref 227 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 681 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 681 flower skip_sw src_mac 02:7d:3d:d9:f2:c4 dst_mac 02:44:72:2a:72:2a src_ip 110.179.23.13 dst_ip 110.17.61.243 ip_proto udp src_port 3912 dst_port 6907 action trap action police rate 1087870bps burst 1088870 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close DEBUG agg2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG agg2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG agg2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG agg2:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f7a25900550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:44:72:2a:72:2a_src_mac_02:7d:3d:d9:f2:c4_eth_type_ipv4_ip_proto_udp_dst_ip_110.17.61.243_src_ip_110.179.23.13_dst_port_6907_src_port_3912 Tx 38146691 Rx 0 Frames Delta 38146691 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:03:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:03:57 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":250,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG agg2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:03:57 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=81] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=68, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=82] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=68, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=82] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=83] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=84] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=84] Channel closed DEBUG agg2:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag 258.15
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3148' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.2, port 34462 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:03:58 PM UTC INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG agg2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG agg2:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:03:58 PM UTC INFO DENT:Logger.py:84 [DENT aggregation 2] policer rate: 1803Kbps, traffic frame size: 1271, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG agg2:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG agg2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG agg2:Logger.py:156 tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG agg2:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp2 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp3 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp4 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp2 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp3 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 && tc filter add dev swp4 ingress protocol 0x0800 flower skip_sw src_mac 02:f5:35:2d:4f:cb dst_mac 02:cd:5f:7a:2f:92 src_ip 65.214.51.186 dst_ip 108.161.219.108 ip_proto udp src_port 2681 dst_port 64863 action trap action police rate 1803984bps burst 1804984 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 166 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:9 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:9 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:9_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:10 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:10 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:10_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:11 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:11 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:11_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:12 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:12 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:12_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG agg2:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG agg2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:cd:5f:7a:2f:92","src_mac":"02:f5:35:2d:4f:cb","eth_type":"ipv4","ip_proto":"udp","dst_ip":"108.161.219.108","src_ip":"65.214.51.186","dst_port":64863,"src_port":2681},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:cd:5f:7a:2f:92_src_mac_02:f5:35:2d:4f:cb_eth_type_ipv4_ip_proto_udp_dst_ip_108.161.219.108_src_ip_65.214.51.186_dst_port_64863_src_port_2681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_dst_mac_02:cd:5f:7a:2f:92_src_mac_02:f5:35:2d:4f:cb_eth_type_ipv4_ip_proto_udp_dst_ip_108.161.219.108_src_ip_65.214.51.186_dst_port_64863_src_port_2681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_dst_mac_02:cd:5f:7a:2f:92_src_mac_02:f5:35:2d:4f:cb_eth_type_ipv4_ip_proto_udp_dst_ip_108.161.219.108_src_ip_65.214.51.186_dst_port_64863_src_port_2681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_dst_mac_02:cd:5f:7a:2f:92_src_mac_02:f5:35:2d:4f:cb_eth_type_ipv4_ip_proto_udp_dst_ip_108.161.219.108_src_ip_65.214.51.186_dst_port_64863_src_port_2681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:9_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:10_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:11_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:12_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close DEBUG agg2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG agg2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG agg2:Logger.py:156 4023 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG agg2:Logger.py:156 4034 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:08:08 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:08:14 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG agg2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG agg2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:08:14 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG agg2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG agg2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG agg2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG agg2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=71] Channel closed DEBUG agg2:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=69, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=72] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=69, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=72] Channel closed DEBUG agg2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=73] Channel closed DEBUG agg2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=74] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=74] Channel closed DEBUG agg2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=75] Channel closed DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=76] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:08:15 PM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=69, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=77] Channel closed DEBUG agg2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=69, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=78] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=69, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=78] Channel closed DEBUG agg2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"42:45:6c:aa:4b:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:2a:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:2a:51","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:2a:52","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:2a:52","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:2a:53","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:2a:53","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:2a:54","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:2a:54","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:6f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:70","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:71","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:72","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:73","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:74","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:75","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:76","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:77","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:78","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:79","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:7f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:80","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":251,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:2a:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=69, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=79] Channel closed DEBUG agg2:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=69, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=69, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=80] Channel closed DEBUG agg2:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled 158.53
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3247' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.41 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.2, port 40334 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.41, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG agg2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG agg2:Logger.py:156 Wed 14 Jun 2023 07:08:16 PM UTC INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG agg2:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG agg2:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps)